PolicyLevel.RemoveNamedPermissionSet Method

Definition

Removes a NamedPermissionSet from the current policy level.

Overloads

RemoveNamedPermissionSet(NamedPermissionSet)
Obsolete.

Removes the specified NamedPermissionSet from the current policy level.

RemoveNamedPermissionSet(String)
Obsolete.

Removes the NamedPermissionSet with the specified name from the current policy level.

RemoveNamedPermissionSet(NamedPermissionSet)

Source:
PolicyLevel.cs
Source:
PolicyLevel.cs
Source:
PolicyLevel.cs

Caution

Code Access Security is not supported or honored by the runtime.

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);
[System.Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId="SYSLIB0003", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public System.Security.NamedPermissionSet RemoveNamedPermissionSet (System.Security.NamedPermissionSet permSet);
member this.RemoveNamedPermissionSet : System.Security.NamedPermissionSet -> System.Security.NamedPermissionSet
[<System.Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId="SYSLIB0003", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
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.

Attributes

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)

Source:
PolicyLevel.cs
Source:
PolicyLevel.cs
Source:
PolicyLevel.cs

Caution

Code Access Security is not supported or honored by the runtime.

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);
[System.Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId="SYSLIB0003", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public System.Security.NamedPermissionSet RemoveNamedPermissionSet (string name);
member this.RemoveNamedPermissionSet : string -> System.Security.NamedPermissionSet
[<System.Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId="SYSLIB0003", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
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.

Attributes

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.

See also

Applies to