Class NSResolvedUser
The User Service. The service implements all services working with the User object.
Syntax
Constructors
NSResolvedUser()
Initializes a new instance of the NSResolvedUser class.
Declaration
NSResolvedUser
Methods
GetPersonCreated()
The User Service. The service implements all services working with the User object.
Declaration
Bool GetPersonCreated()
Returns
| Type | Description |
|---|---|
| Bool | Indicates if the resolved person was created or not. |
Examples
NSResolvedUser thing;
Bool personCreated = thing.GetPersonCreated();
GetUser()
The User Service. The service implements all services working with the User object.
Declaration
NSUser GetUser()
Returns
| Type | Description |
|---|---|
| NSUser | The resolved NSUser instance. |
Examples
NSResolvedUser thing;
NSUser user = thing.GetUser();
SetPersonCreated(Bool)
The User Service. The service implements all services working with the User object.
Declaration
Void SetPersonCreated(Bool personCreated)
Parameters
| Type | Name | Description |
|---|---|---|
| Bool | personCreated | Indicates if the resolved person was created or not. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSResolvedUser thing;
Bool personCreated;
thing.SetPersonCreated(personCreated);
SetUser(NSUser)
The User Service. The service implements all services working with the User object.
Declaration
Void SetUser(NSUser user)
Parameters
| Type | Name | Description |
|---|---|---|
| NSUser | user | The resolved NSUser instance. |
Returns
| Type | Description |
|---|---|
| Void |
Examples
NSResolvedUser thing;
NSUser user;
thing.SetUser(user);