Return the realm name or ID string part of a #REALM-USERS principal or null if this is not a syntactically correct #REALM-USERS principal (the name or ID part is not checked for validity).

Namespace:  FileNet.Api.Constants
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Shared Function ParseRealmUsers ( _
	principal As String _
) As String
C#
public static string ParseRealmUsers(
	string principal
)
Visual C++
public:
static String^ ParseRealmUsers(
	String^ principal
)
JavaScript
FileNet.Api.Constants.SpecialPrincipal.parseRealmUsers = function(principal);

Parameters

principal
Type: System..::.String
The principal name, which should be in the form of "#REALM-USERS(realmNameOrId)".

Return Value

The given realm symbolic name or ID string of the given #REALM-USERS principal. If this does not appear to be a valid #REALM-USERS, null will be returned.

ToggleSee Also