Table of Contents

Class ObjectCondition<TInput>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Generic object condition

public class ObjectCondition<TInput> : IObjectCondition

Type Parameters

TInput
Inheritance
object
ObjectCondition<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 object

Value to match

Returns

bool