dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceConnection Class / State Property
Example

State Property (SalesforceConnection)
Gets the current state of the connection.
Syntax
'Declaration
 
Public Shadows Property State As ConnectionState
 

Property Value

A bitwise combination of the System.Data.ConnectionState values. The default value is Closed.
Remarks
The allowed state changes are:
Example
The following example creates an instance of a derived class, SalesforceConnection, sets its ConnectionString, and displays its State.
public void CreateSalesforceConnection()
{
  SalesforceConnection salesforceConnection = new SalesforceConnection();
  salesforceConnection.ConnectionString = 
      "Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;";
  salesforceConnection.Open();
  MessageBox.Show("Connection State: " + salesforceConnection.State.ToString());
  salesforceConnection.Close();
}
Public Sub CreateSalesforceConnection()
  Dim salesforceConnection As New SalesforceConnection()
  salesforceConnection.ConnectionString = _
      "Server=login.salesforce.com;User Id= name@company.com;Password=mypassword;Security Token=qweASDzcx1234567890rtyui;"
  salesforceConnection.Open()
  MessageBox.Show("Connection State: " + salesforceConnection.State.ToString())
  salesforceConnection.Close()
End Sub
Requirements

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

See Also