PrintingPermission.Union(IPermission) Method

Definition

Creates a permission that combines the permission object and the target permission object.

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

Parameters

target
IPermission

A permission object of the same type as the current permission object.

Returns

A new permission object that represents the union of the current permission object and the specified permission object.

Exceptions

target is an object that is not of the same type as the current permission object.

Remarks

The result of a call to Union is a permission that represents all the operations represented by the current permission object, and all the operations represented by the specified permission object.

Applies to