Users

public class Users

The Users object groups objects of type RepositoryUserRecord together. Invocation via the Workflow object.

 Properties

int Count

The number of user records in the list

 Methods

User GetValue(string username)

Get the record of the given User

Example

This example reads the email address of the user with the (account)name "Smith".

mailto = Workflow.Users.GetValue("Smith").Email

also possible:

mailto = Workflow.Users["Smith"].Email