Interface ICriterionMatcher<TArgument>
Defines a criterion matcher, that contains a specific method for determining whether the argument matches the criterion or not.
Определяет объект который проверяет соответствие критерию и содержит конкретный метод для определения, соответствует ли аргумент критерию или нет.
Namespace: Platform.Interfaces
Assembly: Platform.Interfaces.dll
Syntax
public interface ICriterionMatcher<in TArgument>
Type Parameters
| Name | Description |
|---|---|
| TArgument | Argument type. Тип аргумента. |
Methods
| Improve this Doc View SourceIsMatched(TArgument)
Determines whether the argument matches the criterion.
Определяет, соответствует ли аргумент критерию.
Declaration
bool IsMatched(TArgument argument)
Parameters
| Type | Name | Description |
|---|---|---|
| TArgument | argument | The argument. Аргумент. |
Returns
| Type | Description |
|---|---|
| Boolean | A value that determines whether the argument matches the criterion. Значение, определяющие соответствует ли аргумент критерию. |