PermissionSet.SetPermissionImpl(IPermission) Method

Definition

Sets a permission to the PermissionSet, replacing any existing permission of the same type.

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

Parameters

perm
IPermission

The permission to set.

Returns

The set permission.

Exceptions

The method is called from a ReadOnlyPermissionSet.

Remarks

The SetPermissionImpl method is the implementation for the SetPermission method.

This method removes any existing permission object of the same type from the PermissionSet and replaces it with the perm parameter. If a permission that implements IUnrestrictedPermission is set on a PermissionSet that is Unrestricted, the resulting PermissionSet is no longer Unrestricted.

Applies to