ServerConnection Constructor (String, String, SecureString)
Initializes a new instance of the ServerConnection class with the specified server instance and logon credentials.
Namespace: Microsoft.SqlServer.Management.Common
Assembly: Microsoft.SqlServer.ConnectionInfo (in Microsoft.SqlServer.ConnectionInfo.dll)
Syntax
'Declaration
Public Sub New ( _
serverInstance As String, _
userName As String, _
password As SecureString _
)
'Usage
Dim serverInstance As String
Dim userName As String
Dim password As SecureString
Dim instance As New ServerConnection(serverInstance, _
userName, password)
public ServerConnection(
string serverInstance,
string userName,
SecureString password
)
public:
ServerConnection(
String^ serverInstance,
String^ userName,
SecureString^ password
)
new :
serverInstance:string *
userName:string *
password:SecureString -> ServerConnection
public function ServerConnection(
serverInstance : String,
userName : String,
password : SecureString
)
Parameters
- serverInstance
Type: System.String
A String value that specifies the name of the instance of the server with which the connection is established.
- userName
Type: System.String
A String value that specifies the logon account used to establish the referenced connection.
- password
Type: System.Security.SecureString
A SecureString value that specifies the password used with the logon account.