Class containing the default implementation for the FactoryLoader delegate used by the data portal host. More...
Public Member Functions | |
ObjectFactoryLoader (ApplicationContext applicationContext) | |
Creates an instance of the type. More... | |
Type | GetFactoryType (string factoryName) |
Gets the type of the object factory. More... | |
object | GetFactory (string factoryName) |
Creates an instance of an object factory object for use by the data portal. More... | |
Class containing the default implementation for the FactoryLoader delegate used by the data portal host.
Definition at line 18 of file Csla/Server/ObjectFactoryLoader.cs.
Csla.Server.ObjectFactoryLoader.ObjectFactoryLoader | ( | ApplicationContext | applicationContext | ) |
Creates an instance of the type.
applicationContext |
Definition at line 24 of file Csla/Server/ObjectFactoryLoader.cs.
object Csla.Server.ObjectFactoryLoader.GetFactory | ( | string | factoryName | ) |
Creates an instance of an object factory object for use by the data portal.
factoryName | Assembly qualified type name for the object factory class as provided from the ObjectFactory attribute on the business object. |
Implements Csla.Server.IObjectFactoryLoader.
Definition at line 59 of file Csla/Server/ObjectFactoryLoader.cs.
Type Csla.Server.ObjectFactoryLoader.GetFactoryType | ( | string | factoryName | ) |
Gets the type of the object factory.
factoryName | Assembly qualified type name for the object factory class as provided from the ObjectFactory attribute on the business object. |
Implements Csla.Server.IObjectFactoryLoader.
Definition at line 40 of file Csla/Server/ObjectFactoryLoader.cs.