Class ObjectCondition<TInput>
Generic object condition
public class ObjectCondition<TInput> : IObjectCondition
Type Parameters
TInput
- Inheritance
-
objectObjectCondition<TInput>
- Implements
- Extension Methods
Constructors
ObjectCondition(Func<TInput, bool>)
Constructor
public ObjectCondition(Func<TInput, bool> condition)
Parameters
condition
Func<TInput, bool>Condition for the factory
Properties
Condition
Condition function which evaluates whether the object of the given type can be created based on the input data
public Func<TInput, bool> Condition { get; set; }
Property Value
- Func<TInput, bool>
Methods
Matches(object)
Returns true if the condition over the given object matches
public bool Matches(object value)
Parameters
value
objectValue to match
Returns
- bool