AuthenticationInfoCollection Constructors

Definition

Initializes a new instance of the AuthenticationInfoCollection class.

Overloads

AuthenticationInfoCollection()

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

AuthenticationInfoCollection(AuthenticationInfo[])

Initializes a new instance of the AuthenticationInfoCollection class with the specified entries parameter.

AuthenticationInfoCollection(AuthenticationInfo[], Int32)

Initializes a new instance of the AuthenticationInfoCollection class with the specified entries and default index parameters.

AuthenticationInfoCollection()

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

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

Applies to

AuthenticationInfoCollection(AuthenticationInfo[])

Initializes a new instance of the AuthenticationInfoCollection class with the specified entries parameter.

public:
 AuthenticationInfoCollection(cli::array <Microsoft::SqlServer::Management::UI::ConnectionDlg::AuthenticationInfo ^> ^ entries);
public AuthenticationInfoCollection (Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfo[] entries);
new Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfoCollection : Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfo[] -> Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfoCollection
Public Sub New (entries As AuthenticationInfo())

Parameters

entries
AuthenticationInfo[]

The contents of the collection.

Applies to

AuthenticationInfoCollection(AuthenticationInfo[], Int32)

Initializes a new instance of the AuthenticationInfoCollection class with the specified entries and default index parameters.

public:
 AuthenticationInfoCollection(cli::array <Microsoft::SqlServer::Management::UI::ConnectionDlg::AuthenticationInfo ^> ^ entries, int defaultIndex);
public AuthenticationInfoCollection (Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfo[] entries, int defaultIndex);
new Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfoCollection : Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfo[] * int -> Microsoft.SqlServer.Management.UI.ConnectionDlg.AuthenticationInfoCollection
Public Sub New (entries As AuthenticationInfo(), defaultIndex As Integer)

Parameters

entries
AuthenticationInfo[]

The contents of the collection.

defaultIndex
Int32

An Int32 that represents the default authentication information for the collection.

Applies to