Click or drag to resize

ILicensingProviderReadRealmsByName Method

Returns a set of Realm entities matching a Name. The Realms are '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[]> ReadRealmsByName(
	string realmName
)

Parameters

realmName  String
The Realm name to match. The name comparison is case insensitive.

Return Value

TaskRealm
An asynchronous Task with a Result containing a list of full Realm entities. A zero-length array is returned if no Realms match the realmName.
See Also