ConnectionManagerBase.CanUpdate Method (String)

 

Applies To: SQL Server 2016 Preview

Gets or sets a Boolean that determines whether a connection manager supports upgrading the connection XML to a newer version.

Namespace:   Microsoft.SqlServer.Dts.Runtime
Assembly:  Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

public virtual bool CanUpdate(
    string CreationName
)
public:
virtual bool CanUpdate(
    String^ CreationName
)
abstract CanUpdate : 
        CreationName:string -> bool
override CanUpdate : 
        CreationName:string -> bool
Public Overridable Function CanUpdate (
    CreationName As String
) As Boolean

Parameters

  • CreationName
    Type: System.String

    The name of the connection to upgrade.

Return Value

Type: System.Boolean

true if support exists for upgrades; otherwise, false. The default value is false.

See Also

ConnectionManagerBase Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top