ProtectedOperation.IsSupersetOf(ProtectedOperation) 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.
Gets a value indicating whether this ProtectedOperation, if granted, implies another ProtectedOperation should also be considered granted.
public:
virtual bool IsSupersetOf(Microsoft::ServiceHub::Framework::Services::ProtectedOperation ^ other);
public virtual bool IsSupersetOf (Microsoft.ServiceHub.Framework.Services.ProtectedOperation other);
abstract member IsSupersetOf : Microsoft.ServiceHub.Framework.Services.ProtectedOperation -> bool
override this.IsSupersetOf : Microsoft.ServiceHub.Framework.Services.ProtectedOperation -> bool
Public Overridable Function IsSupersetOf (other As ProtectedOperation) As Boolean
Parameters
- other
- ProtectedOperation
The other operation, which may be a subset of this one.
Returns
true
if this instance is a superset of the other; false
otherwise.
Remarks
In the base implementation, a superset is considered true if the OperationMoniker is equal and RequiredTrustLevel is equal or a greater value.