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 |