Click or drag to resize
ConditionalObjectFactory<ObjectType> Class
Object factory which includes condition on the object creation
Inheritance Hierarchy
System.Object
  CMS.Core.ObjectFactory<ObjectType>
    CMS.Base.ConditionalObjectFactory<ObjectType>

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public class ConditionalObjectFactory<ObjectType> : ObjectFactory<ObjectType>, 
	IConditionalObjectFactory
where ObjectType : class, new()

Type Parameters

ObjectType

The ConditionalObjectFactory< ObjectType> type exposes the following members.

Constructors
Properties
  NameDescription
Protected propertyConditions
Condition function which evaluates whether the object of the given type can be created based on the input data
Protected propertyConstructor
Constructor used for dependency injection
(Inherited from ObjectFactory<T>.)
Public propertyCreatedType
Returns the type created by this factory
(Inherited from ObjectFactory<T>.)
Public propertyInitializer
Object initialization function
(Inherited from ObjectFactory<T>.)
Public propertySingleton
Singleton instance of the created object type
(Inherited from ObjectFactory<T>.)
Protected propertyUseCompiledLambda
If true, the compiled lambda expression is used to create new objects. Set to true if the factory will be creating a lot of objects
(Inherited from ObjectFactory<T>.)
Top
Methods
  NameDescription
Public methodCanCreateObject
Returns true if the factory is able to create the object based on the given parameter
(Overrides ObjectFactory<T>.CanCreateObject(Object).)
Protected methodCreateActivator
Creates an object activator for the created type
(Inherited from ObjectFactory<T>.)
Protected methodCreateInstance
Creates a new instance of the object
(Inherited from ObjectFactory<T>.)
Public methodCreateNewObject
Creates and returns a new object
(Inherited from ObjectFactory<T>.)
Public methodCreateNewTypedObject
Creates and returns a new object
(Inherited from ObjectFactory<T>.)
Public methodWhenParameter<InputType>
Adds the object condition to the factory
Top
Extension Methods
  NameDescription
Public Extension MethodWhenColumnValue
Adds the condition for the column value to the factory
(Defined by DataExtensions.)
Top
See Also