CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Server.IObjectFactoryLoader Interface Reference

Defines an interface to be implemented by a factory loader object that returns ObjectFactory objects based on the ObjectFactory attributes used to decorate CSLA .NET business objects. More...

Inheritance diagram for Csla.Server.IObjectFactoryLoader:
Csla.Server.ObjectFactoryLoader

Public Member Functions

Type GetFactoryType (string factoryName)
 Returns the type of the factory object. More...
 
object GetFactory (string factoryName)
 Returns an ObjectFactory object. More...
 

Detailed Description

Defines an interface to be implemented by a factory loader object that returns ObjectFactory objects based on the ObjectFactory attributes used to decorate CSLA .NET business objects.

Definition at line 21 of file IObjectFactoryLoader.cs.

Member Function Documentation

◆ GetFactory()

object Csla.Server.IObjectFactoryLoader.GetFactory ( string  factoryName)

Returns an ObjectFactory object.

Parameters
factoryNameName of the factory to create, typically an assembly qualified type name.

Implemented in Csla.Server.ObjectFactoryLoader.

◆ GetFactoryType()

Type Csla.Server.IObjectFactoryLoader.GetFactoryType ( string  factoryName)

Returns the type of the factory object.

Parameters
factoryNameName of the factory to create, typically an assembly qualified type name.

Implemented in Csla.Server.ObjectFactoryLoader.