getConfigPropertyMapWithError: method

Returns all the settings in Key-Value pair.

Syntax

- ( NSDictionary * ) getConfigPropertyMapWithError : ( NSError ** ) error

Parameters

Returns

Returns all the settings as NSDictionary object.

Example 1

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