Class NotMatcher<TKey>
- Namespace
- Quartz
- Assembly
- Quartz.dll
Matches using an NOT operator on another Matcher.
public sealed class NotMatcher<TKey> : IMatcher<TKey> where TKey : Key<TKey>
Type Parameters
TKey
- Inheritance
-
NotMatcher<TKey>
- Implements
-
IMatcher<TKey>
- Inherited Members
- Extension Methods
Properties
Operand
The matcher whose answer is inverted.
public IMatcher<TKey> Operand { get; }
Property Value
- IMatcher<TKey>
Methods
Equals(object?)
Determines whether the specified object is equal to the current object.
public override bool Equals(object? obj)
Parameters
objobjectThe object to compare with the current object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
IsMatch(TKey)
Whether key is one of the keys this matcher selects.
public bool IsMatch(TKey key)
Parameters
keyTKeyThe key to test.