XamlLoadPermission.Intersect(IPermission) Method

Definition

Creates and returns a XamlLoadPermission that is the intersection of the current XamlLoadPermission and the specified permission.

public:
 override System::Security::IPermission ^ Intersect(System::Security::IPermission ^ target);
public override System.Security.IPermission Intersect (System.Security.IPermission target);
override this.Intersect : System.Security.IPermission -> System.Security.IPermission
Public Overrides Function Intersect (target As IPermission) As IPermission

Parameters

target
IPermission

A XamlLoadPermission to intersect with the current XamlLoadPermission. Can be null.

Returns

A new permission that represents the intersection of the current XamlLoadPermission and the specified XamlLoadPermission. This new permission is null if the intersection is empty.

Exceptions

target is not null or is not a XamlLoadPermission.

Remarks

For union, intersect, and subset logic, IsUnrestricted is checked first, and might return a result based solely on that check. Next, AllowedAccess is checked.

Applies to