Click or drag to resize

ILicensingProviderReadRealm Method

Reads a Realm entity by primary key Id. The Realm is 'deep' loaded so that relationship properties are filled with the related entities.

Namespace: RCS.Carbon.Licensing.Shared
Assembly: RCS.Carbon.Licensing.Shared (in RCS.Carbon.Licensing.Shared.dll) Version: 9.1.22
Syntax
C#
Task<Realm?> ReadRealm(
	string realmId
)

Parameters

realmId  String
The Id (primary database key) of the Realm to read.

Return Value

TaskRealm
An asynchronous Task with a Result containing the full Realm entity if it is found. Null is returned if the realmId primary key is not found.
See Also