ConnectionStringBuilder Constructor (String, String, NetworkCredential)

System.Data.Generic

ConnectionStringBuilder Constructor (String, String, NetworkCredential)
Returns a new instance of the ConnectionStringBuilder class, specifying credentials.

Namespace: System.Data.Generic
Assembly: System.Data.Generic (in System.Data.Generic.dll) Version: 1.9.5473.30542 (1.9.5473.2392)
Syntax
public ConnectionStringBuilder(
	string server,
	string database,
	NetworkCredential credentials
)
Public Sub New ( 
	server As String,
	database As String,
	credentials As NetworkCredential
)
public:
ConnectionStringBuilder(
	String^ server, 
	String^ database, 
	NetworkCredential^ credentials
)
new : 
        server : string * 
        database : string * 
        credentials : NetworkCredential -> ConnectionStringBuilder

Parameters

server
Type: SystemString
Server address of the connection.
database
Type: SystemString
Database of the connection.
credentials
Type: System.NetNetworkCredential
Username and password for the connection.
Remarks