CloseSession

The CloseSession method is used to close an existing Mongoose session. This is essentially the same as logging out from the application.

Example

This example code terminates an existing session.

Client client = new Client( requestServiceURL, IDOProtocol.Http );
 
using ( client )
{
   client.CloseSession();
}