Table of Contents

Class ObjectGenerator<TBase>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Generator class for the various type of objects

public class ObjectGenerator<TBase> where TBase : class

Type Parameters

TBase
Inheritance
object
ObjectGenerator<TBase>
Extension Methods

Constructors

ObjectGenerator(IObjectFactory)

Constructor

public ObjectGenerator(IObjectFactory defaultFactory)

Parameters

defaultFactory IObjectFactory

Default factory that will be used if no object type matches

Methods

CreateNewObject(object)

Creates new object of the given type

public TBase CreateNewObject(object parameter = null)

Parameters

parameter object

Parameter used in CanCreateObject(object) method.

Returns

TBase

CreateNewObject(string)

Creates new object of the given type

public TBase CreateNewObject(string objectType)

Parameters

objectType string

Object type

Returns

TBase

RegisterDefaultFactory(IObjectFactory, bool)

Registers the default object factory

public void RegisterDefaultFactory(IObjectFactory factory, bool topPriority)

Parameters

factory IObjectFactory

Object factory to register

topPriority bool

If true, this factory is prioritized against

RegisterObjectType(string, IObjectFactory)

Registers the given object type

public void RegisterObjectType(string objectType, IObjectFactory factory)

Parameters

objectType string

Object type string

factory IObjectFactory

Object factory

RegisterObjectType<TObject>(string)

Registers the given object type

public void RegisterObjectType<TObject>(string objectType) where TObject : class, TBase, new()

Parameters

objectType string

Object type string

Type Parameters

TObject

UnregisterObjectType(string)

Unregisters the given object type.

public void UnregisterObjectType(string objectType)

Parameters

objectType string

Object type string.