Class NSResolvedUser

The User Service. The service implements all services working with the User object.

Constructors

NSResolvedUser()

Initializes a new instance of the NSResolvedUser class.

Declaration

NSResolvedUser

Methods

GetPersonCreated()

Declaration

Bool GetPersonCreated()

Examples

NSResolvedUser thing;
Bool personCreated = thing.GetPersonCreated();

Returns

Type Description
Bool Indicates if the resolved person was created or not.

GetUser()

Declaration

NSUser GetUser()

Examples

NSResolvedUser thing;
NSUser user = thing.GetUser();

Returns

Type Description
NSUser The resolved NSUser instance.

SetPersonCreated(Bool)

Declaration

Void SetPersonCreated(Bool personCreated)

Examples

NSResolvedUser thing;
Bool personCreated;
thing.SetPersonCreated(personCreated);

Parameters

Type Name Description
Bool personCreated Indicates if the resolved person was created or not.

Returns

Type Description
Void

SetUser(NSUser)

Declaration

Void SetUser(NSUser user)

Examples

NSResolvedUser thing;
NSUser user;
thing.SetUser(user);

Parameters

Type Name Description
NSUser user The resolved NSUser instance.

Returns

Type Description
Void