示例#1
0
 private void CloseClient()
 {
     // Closing the client
     if (_client != null)
     {
         _client.Close();
         _client = null;
     }
 }
示例#2
0
 private void InitClient()
 {
     // Creating transaction query client
     _client = new TransactQueryClient(EnvironmentManager.Instance.CurrentSite.ServerId);
 }