Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PermissionSet::RemovePermission Method (Type^)

 

Removes a permission of a certain type from the set.

Namespace:   System.Security
Assembly:  mscorlib (in mscorlib.dll)

public:
IPermission^ RemovePermission(
	Type^ permClass
)

Parameters

permClass
Type: System::Type^

The type of permission to delete.

Return Value

Type: System.Security::IPermission^

The permission removed from the set.

Exception Condition
InvalidOperationException

The method is called from a ReadOnlyPermissionSet.

System_CAPS_importantImportant

You cannot remove permissions from an unrestricted permission set. The permission set remains unrestricted after you attempt to remove the permission, and an exception is not thrown.

The following C# code attempts to remove the FileIOPermission from the FullTrust permission set, but the permission is not removed.

PolicyLevel myPol = PolicyLevel.CreateAppDomainLevel();
PermissionSet myPermSet = myPol.GetNamedPermissionSet("FullTrust");
myPermSet.RemovePermission(typeof(FileIOPermission));

Notes to Inheritors:

When you inherit from PermissionSet, you can change the behavior of the RemovePermission method by overriding the RemovePermissionImpl method.

The following code example shows the use of the RemovePermission method to remove a FileIOPermission from a permission set. This code example is part of a larger example provided for the PermissionSet class.

// Remove FileIOPermission from the permission set.
ps5->RemovePermission( FileIOPermission::typeid );
Console::WriteLine( "The last permission set after removing FileIOPermission = {0}", ps5 );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft