ZoneIdentityPermission::IsSubsetOf Method (IPermission^)

 

Determines whether the current permission is a subset of the specified permission.

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

public:
virtual bool IsSubsetOf(
	IPermission^ target
) override

Parameters

target
Type: System.Security::IPermission^

A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission.

Return Value

Type: System::Boolean

true if the current permission is a subset of the specified permission; otherwise, false.

Exception Condition
ArgumentException

The target parameter is not null, this permission does not represent the NoZone security zone, and the specified permission is not equal to the current permission.

The current permission is a subset of the specified permission if the two permissions are equal or if the current permission represents the NoZone security zone.

.NET Framework
Available since 1.1
Return to top
Show: