'Declaration Public Function New( _ ByVal connectionString As String _ )
public SalesforceConnection( string connectionString )
Parameters
- connectionString
- The connection used to connect to Salesforce.com or Database.com.
'Declaration Public Function New( _ ByVal connectionString As String _ )
public SalesforceConnection( string connectionString )
Properties | Initial Value |
---|---|
ConnectionString | connectionString |
ConnectionTimeout | 15 |
Password | empty string ("") |
UserId | empty string ("") |
public void CreateSalesforceConnection() { string myConnString = "Server=login.salesforce.com;User Id= [email protected];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= [email protected];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