PermissionSet.GetPermission(Type) Method

Definition

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

public:
 System::Security::IPermission ^ GetPermission(Type ^ permClass);
public:
 virtual System::Security::IPermission ^ GetPermission(Type ^ permClass);
public System.Security.IPermission GetPermission (Type permClass);
public System.Security.IPermission? GetPermission (Type? permClass);
public virtual System.Security.IPermission GetPermission (Type permClass);
member this.GetPermission : Type -> System.Security.IPermission
abstract member GetPermission : Type -> System.Security.IPermission
override this.GetPermission : Type -> System.Security.IPermission
Public Function GetPermission (permClass As Type) As IPermission
Public Overridable Function GetPermission (permClass As Type) As IPermission

Parameters

permClass
Type

The type of the desired 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 method returns null for an Unrestricted PermissionSet. Although an Unrestricted PermissionSet effectively contains all permissions, it does not have any actual instances to return.

Notes to Inheritors

When you inherit from PermissionSet, you can change the behavior of the GetPermission(Type) method by overriding the GetPermissionImpl(Type) method.

Applies to