Click or drag to resize
UserInfoIsAuthorizedPerObject Method (PermissionsEnum, String, String, Boolean)
Checks whether the user is authorized per object with given object type and permission.

Namespace: CMS.Membership
Assembly: CMS.Membership (in CMS.Membership.dll) Version: 9.0.0
Syntax
C#
public virtual bool IsAuthorizedPerObject(
	PermissionsEnum permission,
	string objectType,
	string siteName,
	bool exceptionOnFailure = false
)

Parameters

permission
Type: CMS.DataEnginePermissionsEnum
Permission to check
objectType
Type: SystemString
Object type
siteName
Type: SystemString
Site name
exceptionOnFailure (Optional)
Type: SystemBoolean
If true, PermissionCheckException is thrown whenever a permission check fails

Return Value

Type: Boolean
Exceptions
ExceptionCondition
PermissionCheckExceptionThrown when permission check fail and exception is allowed by exceptionOnFailure parameter.
See Also