SqlServerType Constructors

Definition

Initializes a new instance of the SqlServerType class.

Overloads

SqlServerType()

Initializes a new instance of the SqlServerType class with the default property values.

SqlServerType(Decimal)

Initializes a new instance of the SqlServerType class with the specified default execution time-out value.

SqlServerType(Int32[])

Initializes a new instance of the SqlServerType class with specified supported authentication types.

SqlServerType(Int32[], Decimal)

Initializes a new instance of the SqlServerType class with specified supported authentication types and default execution time-out value.

SqlServerType()

Initializes a new instance of the SqlServerType class with the default property values.

public:
 SqlServerType();
public SqlServerType ();
Public Sub New ()

Applies to

SqlServerType(Decimal)

Initializes a new instance of the SqlServerType class with the specified default execution time-out value.

public:
 SqlServerType(System::Decimal defaultExecutionTimeout);
public SqlServerType (decimal defaultExecutionTimeout);
new Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType : decimal -> Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType
Public Sub New (defaultExecutionTimeout As Decimal)

Parameters

defaultExecutionTimeout
Decimal

The default execution time-out value.

Applies to

SqlServerType(Int32[])

Initializes a new instance of the SqlServerType class with specified supported authentication types.

public:
 SqlServerType(cli::array <int> ^ supportedAuthenticationTypes);
public SqlServerType (int[] supportedAuthenticationTypes);
new Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType : int[] -> Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType
Public Sub New (supportedAuthenticationTypes As Integer())

Parameters

supportedAuthenticationTypes
Int32[]

The supported authentication types.

Applies to

SqlServerType(Int32[], Decimal)

Initializes a new instance of the SqlServerType class with specified supported authentication types and default execution time-out value.

public:
 SqlServerType(cli::array <int> ^ supportedAuthenticationTypes, System::Decimal defaultExecutionTimeout);
public SqlServerType (int[] supportedAuthenticationTypes, decimal defaultExecutionTimeout);
new Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType : int[] * decimal -> Microsoft.SqlServer.Management.UI.ConnectionDlg.SqlServerType
Public Sub New (supportedAuthenticationTypes As Integer(), defaultExecutionTimeout As Decimal)

Parameters

supportedAuthenticationTypes
Int32[]

The supported authentication types.

defaultExecutionTimeout
Decimal

The default execution time-out value.

Applies to