close() public method

Close the connection to the AppEngine channel.
public close ( ) : void
return void
コード例 #1
0
 /// <summary>
 /// Disconnect from the GAE Channel.
 /// </summary>
 public void disconnect()
 {
     if (channelClient != null)
     {
         channelClient.close();
         channelClient = null;
     }
 }