NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PermissionSet.Intersect

Computes the intersection of two permission sets.

[Visual Basic]
Overridable Public Function Intersect( _
   ByVal other As PermissionSet _
) As PermissionSet
[C#]
public virtual PermissionSet Intersect(
   PermissionSet other
);
[C++]
public: virtual PermissionSet* Intersect(
   PermissionSet* other
);
[JScript]
public function Intersect(
   other : PermissionSet
) : PermissionSet;

Parameters

other
Other permission set to intersect with.

Return Value

A permission set that is the intersection of permissions in both sets.

Remarks

The intersection permission set contains the intersection of permissions of the same type that are in respective permission sets.

See Also

PermissionSet Class | PermissionSet Members | System.Security Namespace