SalesforceConnection Constructor(String)
Initializes a new instance of the
SalesforceConnection class when given a string containing the connection string.
The following example creates and opens a
SalesforceConnection.
public void CreateSalesforceConnection()
{
string myConnString =
"Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;";
SalesforceConnection salesforceConnection = new SalesforceConnection(myConnString);
salesforceConnection.Open();
//Do something
salesforceConnection.Close();
}
Public Sub CreateSalesforceConnection()
Dim myConnString As String = _
"Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;"
Dim salesforceConnection As New SalesforceConnection(myConnString)
salesforceConnection.Open()
'Do something
salesforceConnection.Close()
End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2