Click or drag to resize

LicensingClientReadUser Method

Reads a User record by primary key id.

Namespace: RCS.Licensing.Stdlib
Assembly: RCS.Licensing.Stdlib (in RCS.Licensing.Stdlib.dll) Version: 8.0.0+6a10b18a78f605fc5a365a56d079277e103ee6d9
Syntax
C#
public Task<User?> ReadUser(
	string id
)

Parameters

id  String
The primary key id of the User to read.

Return Value

TaskUser
A User if a record with the id exists, null if not found.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if id is null.
ApplicationExceptionThrown if the web service call fails.
See Also