Table of Contents

Class ObjectFactory

Namespace
CMS.Core
Assembly
CMS.Core.dll

Object factory based on the given type

public class ObjectFactory : ObjectFactory<object>, IObjectFactory
Inheritance
object
ObjectFactory
Implements
Inherited Members
Extension Methods

Constructors

ObjectFactory(Type)

Constructor

public ObjectFactory(Type type)

Parameters

type Type

Object type

Methods

GetFactory(Type)

Gets the factory for the given type

public static IObjectFactory GetFactory(Type type)

Parameters

type Type

Type of the requested object factory

Returns

IObjectFactory

GetFactoryGeneric<TObject>()

Creates an object by an external factory of the given type

protected static IObjectFactory GetFactoryGeneric<TObject>()

Returns

IObjectFactory

Type Parameters

TObject

New(Type)

Creates an object of the given type

public static object New(Type type)

Parameters

type Type

Type of the created object

Returns

object