ConfigurationPermission.IsSubsetOf(IPermission) 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.
Compares the ConfigurationPermission object with an object implementing the IPermission interface.
public:
override bool IsSubsetOf(System::Security::IPermission ^ target);
public override bool IsSubsetOf (System.Security.IPermission target);
override this.IsSubsetOf : System.Security.IPermission -> bool
Public Overrides Function IsSubsetOf (target As IPermission) As Boolean
Parameters
- target
- IPermission
The object to compare to.
Returns
true
if the permission state is equal; otherwise, false
.
Exceptions
target
is not typed as ConfigurationPermission.
Remarks
Although the method signature accepts any object that implements the IPermission interface, an ArgumentException exception will be thrown if calling the GetType method on the object referenced by the target
parameter does not return System.Configuration.ConfigurationPermission.
If the object referenced by the target
parameter is null
, the comparison is done between the permission state of the ConfigurationPermission object and the None value of the PermissionState enumeration.