Skip to content

Get

Retrieves an identity based on its unique identifier.

1
$Membership.Get(id: string):Identity

Parameters

string id
    The unique identifier of the identity to retrieve.

Returns

The identity associated with the given ID.

Remarks

Example

1
2
3
4
var identity = $Membership.Get($Xml.Evaluate('TaskList/TaskAssignee/Identity'));
var identityDomain = identity.Domain;
var identityName = identity.Name;
var identityType = identity.Type;

See Also