PolicyLevel.RemoveNamedPermissionSet Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Removes a NamedPermissionSet from the current policy level.
Overloads
| Name | Description |
|---|---|
| RemoveNamedPermissionSet(NamedPermissionSet) |
Removes the specified NamedPermissionSet from the current policy level. |
| RemoveNamedPermissionSet(String) |
Removes the NamedPermissionSet with the specified name from the current policy level. |
RemoveNamedPermissionSet(NamedPermissionSet)
Removes the specified NamedPermissionSet from the current policy level.
public:
System::Security::NamedPermissionSet ^ RemoveNamedPermissionSet(System::Security::NamedPermissionSet ^ permSet);
public System.Security.NamedPermissionSet RemoveNamedPermissionSet(System.Security.NamedPermissionSet permSet);
member this.RemoveNamedPermissionSet : System.Security.NamedPermissionSet -> System.Security.NamedPermissionSet
Public Function RemoveNamedPermissionSet (permSet As NamedPermissionSet) As NamedPermissionSet
Parameters
- permSet
- NamedPermissionSet
The NamedPermissionSet to remove from the current policy level.
Returns
The NamedPermissionSet that was removed.
Exceptions
The NamedPermissionSet specified by the permSet parameter was not found.
The permSet parameter is null.
Remarks
Caution
Code Access Security (CAS) has been deprecated across all versions of .NET Framework and .NET. Recent versions of .NET do not honor CAS annotations and produce errors if CAS-related APIs are used. Developers should seek alternative means of accomplishing security tasks.
Applies to
RemoveNamedPermissionSet(String)
Removes the NamedPermissionSet with the specified name from the current policy level.
public:
System::Security::NamedPermissionSet ^ RemoveNamedPermissionSet(System::String ^ name);
public System.Security.NamedPermissionSet RemoveNamedPermissionSet(string name);
member this.RemoveNamedPermissionSet : string -> System.Security.NamedPermissionSet
Public Function RemoveNamedPermissionSet (name As String) As NamedPermissionSet
Parameters
- name
- String
The name of the NamedPermissionSet to remove.
Returns
The NamedPermissionSet that was removed.
Exceptions
The name parameter is equal to the name of a reserved permission set.
-or-
A NamedPermissionSet with the specified name cannot be found.
The name parameter is null.
Remarks
Caution
Code Access Security (CAS) has been deprecated across all versions of .NET Framework and .NET. Recent versions of .NET do not honor CAS annotations and produce errors if CAS-related APIs are used. Developers should seek alternative means of accomplishing security tasks.