Open Method (ZohoDeskConnection)
Opens a Zoho Desk connection with the property settings specified by the
ConnectionString.
The following example creates a
ZohoDeskConnection, opens it, displays some of its properties, and then closes the connection.
public void CreateZohoDeskConnection(string myConnString)
{
ZohoDeskConnection ZohoDeskConnection = new ZohoDeskConnection(myConnString);
ZohoDeskConnection.Open();
MessageBox.Show("ServerVersion: " + ZohoDeskConnection.ServerVersion
+ "\nState: " + ZohoDeskConnection.State.ToString());
ZohoDeskConnection.Close();
}
Public Sub CreateZohoDeskConnection(myConnString As String)
Dim ZohoDeskConnection As New ZohoDeskConnection(myConnString)
ZohoDeskConnection.Open()
MessageBox.Show("ServerVersion: " + ZohoDeskConnection.ServerVersion _
+ ControlChars.Cr + "State: " + ZohoDeskConnection.State.ToString())
ZohoDeskConnection.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