releaseStoredCredentialsWithError: method

Releases the username and password provided while initializing app settings class.

Syntax

- ( void ) releaseStoredCredentialsWithError : ( NSError ** ) error

Parameters

Example 1

SMPAppSettings* appSettings = [SMPAppSettings initializeWithConnection:clientConn userName:"username" password:@"password"];
NSError* error = nil;
[appSettings releaseStoredCredentialsWithError:&error];
if (!error)
{
    // Further processing
}