PrivilegeProxy GetPrivilege Method CelloSaaS API Documentation
Get privilege details for a particular privilege identifier.

Namespace: CelloSaaS.BusinessEdition.ServiceProxies.AccessControlManagement
Assembly: CelloSaaS.BusinessEdition (in CelloSaaS.BusinessEdition.dll) Version: 4.3.1.0 (4.3.1.0)
Syntax

public static Privilege GetPrivilege(
	string privilegeIdentifier
)

Parameters

privilegeIdentifier
Type: System String
Privilege Identifier(Mandatory)

Return Value

Type: Privilege
Privilege Details
Exceptions

ExceptionCondition
[!:CelloSaaS.ServiceContracts.AccessControlManagement.PrivilegeException]If db exception occurs
[!:ArgumentNullException]If privilege id is null or empty
Examples

public void GetPrivilege()
{
    string privilegeIdentifier = "Add_User";
    Privilege privilege = PrivilegeProxy.GetPrivilege(privilegeIdentifier);
}
See Also