Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Specifies whether the wrapper can be downgraded to a specific version.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Function CanDowngradeTo ( _
versionTo As Integer _
) As Boolean
'Usage
Dim instance As ManagedWrapper
Dim versionTo As Integer
Dim returnValue As Boolean
returnValue = instance.CanDowngradeTo(versionTo)
public bool CanDowngradeTo(
int versionTo
)
public:
virtual bool CanDowngradeTo(
int versionTo
) sealed
abstract CanDowngradeTo :
versionTo:int -> bool
override CanDowngradeTo :
versionTo:int -> bool
public final function CanDowngradeTo(
versionTo : int
) : boolean
Parameters
- versionTo
Type: System.Int32
The version where the wrapper is going to be downgraded.
Return Value
Type: System.Boolean
True if the wrapper can be downgraded to a specific version; otherwise, false.
Implements
IDTSDowngradableObject100.CanDowngradeTo(Int32)