C# Class FluentSpring.Context.Support.FluentGenericApplicationContext

Inheritance: Spring.Context.Support.XmlApplicationContext
显示文件 Open project: thenapoleon/Fluent-API-for-Spring.Net

Public Methods

Method Description
FluentGenericApplicationContext ( ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.

The created context will be case sensitive.

FluentGenericApplicationContext ( IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.

FluentGenericApplicationContext ( bool caseSensitive ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.

FluentGenericApplicationContext ( bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.

FluentGenericApplicationContext ( bool refresh, string name, bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.

This constructor is meant to be used by derived classes. By passing refresh=false, it is the responsibility of the deriving class to call AbstractApplicationContext.Refresh() to initialize the context instance.

FluentGenericApplicationContext ( string name, bool caseSensitive ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.

FluentGenericApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.

Protected Methods

Method Description
LoadObjectDefinitions ( Spring.Objects.Factory.Support.DefaultListableObjectFactory objectFactory ) : void

Method Details

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.
The created context will be case sensitive.
public FluentGenericApplicationContext ( ) : FluentSpring.Context.Objects.Factory
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.
public FluentGenericApplicationContext ( IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory
parentContext IApplicationContext /// The parent context (may be ). ///
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.
public FluentGenericApplicationContext ( bool caseSensitive ) : FluentSpring.Context.Objects.Factory
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.
public FluentGenericApplicationContext ( bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
parentContext IApplicationContext /// The parent context (may be ). ///
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.
This constructor is meant to be used by derived classes. By passing refresh=false, it is the responsibility of the deriving class to call AbstractApplicationContext.Refresh() to initialize the context instance.
public FluentGenericApplicationContext ( bool refresh, string name, bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory
refresh bool if true, is called automatically.
name string The application context name.
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
parentContext IApplicationContext /// The parent context (may be ). ///
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations.
public FluentGenericApplicationContext ( string name, bool caseSensitive ) : FluentSpring.Context.Objects.Factory
name string The application context name.
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
return FluentSpring.Context.Objects.Factory

FluentGenericApplicationContext() public method

Creates a new instance of the Spring.Context.Support.XmlApplicationContext class, loading the definitions from the supplied XML resource locations, with the given parentContext.
public FluentGenericApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : FluentSpring.Context.Objects.Factory
name string The application context name.
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
parentContext IApplicationContext /// The parent context (may be ). ///
return FluentSpring.Context.Objects.Factory

LoadObjectDefinitions() protected method

protected LoadObjectDefinitions ( Spring.Objects.Factory.Support.DefaultListableObjectFactory objectFactory ) : void
objectFactory Spring.Objects.Factory.Support.DefaultListableObjectFactory
return void