Class ObjectFactory
Object factory based on the given type
public class ObjectFactory : ObjectFactory<object>, IObjectFactory
- Inheritance
-
objectObjectFactory<object>ObjectFactory
- Implements
- Inherited Members
- Extension Methods
Constructors
ObjectFactory(Type)
Constructor
public ObjectFactory(Type type)
Parameters
type
TypeObject type
Methods
GetFactory(Type)
Gets the factory for the given type
public static IObjectFactory GetFactory(Type type)
Parameters
type
TypeType of the requested object factory
Returns
GetFactoryGeneric<TObject>()
Creates an object by an external factory of the given type
protected static IObjectFactory GetFactoryGeneric<TObject>()
Returns
Type Parameters
TObject
New(Type)
Creates an object of the given type
public static object New(Type type)
Parameters
type
TypeType of the created object
Returns
- object