C# Class Spring.Objects.Factory.Support.WebObjectDefinitionFactory

Custom implementation of IObjectDefinitionFactory for web applications.

This implementation adds support for .aspx pages and scoped objects.

Inheritance: DefaultObjectDefinitionFactory
Mostrar archivo Open project: spring-projects/spring-net Class Usage Examples

Public Methods

Method Description
CreateObjectDefinition ( string typeName, string parent, AppDomain domain ) : AbstractObjectDefinition

Factory style method for getting concrete IConfigurableObjectDefinition instances.

If no parent is specified, a RootWebObjectDefinition is created, otherwise a ChildWebObjectDefinition.

Method Details

CreateObjectDefinition() public method

Factory style method for getting concrete IConfigurableObjectDefinition instances.
If no parent is specified, a RootWebObjectDefinition is created, otherwise a ChildWebObjectDefinition.
public CreateObjectDefinition ( string typeName, string parent, AppDomain domain ) : AbstractObjectDefinition
typeName string The of the defined object.
parent string The name of the parent object definition (if any).
domain System.AppDomain The against which any class names /// will be resolved into instances.
return AbstractObjectDefinition