Note: If the ZohoDeskConnection goes out of scope, the connection it represents does not close automatically. Therefore, you must explicitly close the connection by calling Close.
Opening an open connection does nothing.
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