PermissionSet.GetPermissionImpl(Type) Method

Definition

Gets a permission object of the specified type, if it exists in the set.

protected:
 virtual System::Security::IPermission ^ GetPermissionImpl(Type ^ permClass);
protected virtual System.Security.IPermission GetPermissionImpl (Type permClass);
protected virtual System.Security.IPermission? GetPermissionImpl (Type? permClass);
abstract member GetPermissionImpl : Type -> System.Security.IPermission
override this.GetPermissionImpl : Type -> System.Security.IPermission
Protected Overridable Function GetPermissionImpl (permClass As Type) As IPermission

Parameters

permClass
Type

The type of the permission object.

Returns

A copy of the permission object, of the type specified by the permClass parameter, contained in the PermissionSet, or null if none exists.

Remarks

The GetPermissionImpl method is the implementation for the GetPermission method.

The method returns null for an Unrestricted PermissionSet. Although an Unrestricted PermissionSet effectively contains all permissions, it does not have any actual instances to return.

Applies to