| (C#) SugarCRM LogoutDemonstrates how to logout of a session. 
 Chilkat.Rest rest = new Chilkat.Rest();
bool success;
success = rest.Connect("your.site.domain",443,true,true);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}
rest.AddHeader("Cache-Control","no-cache");
rest.AddHeader("OAuth-Token","<access_token>");
Chilkat.StringBuilder sbReq = new Chilkat.StringBuilder();
Chilkat.StringBuilder sbJson = new Chilkat.StringBuilder();
success = rest.FullRequestSb("POST","/rest/v10/oauth2/logout",sbReq,sbJson);
if (success != true) {
    Debug.WriteLine(rest.LastErrorText);
    return;
}
if (rest.ResponseStatusCode != 200) {
    Debug.WriteLine("Received error response code: " + Convert.ToString(rest.ResponseStatusCode));
    Debug.WriteLine("Response body:");
    Debug.WriteLine(sbJson.GetAsString());
    return;
}
Chilkat.JsonObject json = new Chilkat.JsonObject();
json.LoadSb(sbJson);
// The following code parses the JSON response.
// A sample JSON response is shown below the sample code.
bool success;
success = json.BoolOf("success");
// A sample JSON response body that is parsed by the above code:
// {
//   "success": true
// }
Debug.WriteLine("Example Completed.");
 |