API Reference
Enum
BenchmarkComparator
Defines the comparison applied to current and desired values.
Inheritance
- Enum
- BenchmarkComparator
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property BenchmarkCheckDefinition.Comparator
- Field BenchmarkComparator.AnyOf
- Field BenchmarkComparator.Between
- Field BenchmarkComparator.Exact
- Field BenchmarkComparator.GreaterOrEqual
- Field BenchmarkComparator.LessOrEqual
- Field BenchmarkComparator.MustExist
- Field BenchmarkComparator.MustNotExist
- Field BenchmarkComparator.NotEqual
- Field BenchmarkComparator.NotRegex
- Field BenchmarkComparator.Regex
- Field BenchmarkComparator.Subset
- Field BenchmarkComparator.Superset
- Property BenchmarkCheckResult.Comparator
- Property BenchmarkPolicyDecision.Comparator
Inherited Methods
public override sealed Int32 CompareTo(Object target) #Returns:
Int32Inherited from Enum
Parameters
- target Object
ToString 4 overloads
public override sealed String ToString(IFormatProvider provider) #Returns:
StringInherited from Enum
Obsolete("The provider argument is not used. Use ToString() instead.")Parameters
- provider IFormatProvider
public override sealed String ToString(String format, IFormatProvider provider) #Returns:
StringInherited from Enum
Obsolete("The provider argument is not used. Use ToString(String) instead.")Parameters
- format String
- provider IFormatProvider
Values
public const BenchmarkComparator GreaterOrEqual #The current numeric value must be greater than or equal to desired.
Value:
1public const BenchmarkComparator LessOrEqual #The current numeric value must be less than or equal to desired.
Value:
2public const BenchmarkComparator Subset #The current set must contain no items outside the desired set.
Value:
4public const BenchmarkComparator AnyOf #The current value must equal one of the desired alternatives.
Value:
5public const BenchmarkComparator NotEqual #The current value must not equal the undesired value.
Value:
9public const BenchmarkComparator Between #The current numeric value must fall within an inclusive range.
Value:
10public const BenchmarkComparator NotRegex #The current text must not match a regular expression.
Value:
11