Click or drag to resize
RallyRestApiLogout Method
Logs this API out from any connection to Rally and clears the authentication configuration.

Namespace: Rally.RestApi
Assembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax
public void Logout()
Examples
C#
RallyRestApi restApi = new RallyRestApi();
WebProxy myProxy = new WebProxy();
restApi.AuthenticateWithZSessionID("myuser@company.com", "zSessionID", proxy: myProxy);

restApi.Logout();
See Also