C# Class FluentSpring.Context.Support.FluentWebApplicationContext

This is the new IApplicationContext which will call the object definition loader when the object definitions are being refreshed from configuration.
Inheritance: Spring.Context.Support.WebApplicationContext
Afficher le fichier Open project: thenapoleon/Fluent-API-for-Spring.Net

Méthodes publiques

Méthode Description
FluentWebApplicationContext ( ) : Spring.Context

Create a new WebApplicationContext, loading the definitions from the given XML resource and also all fluently configured ones.

FluentWebApplicationContext ( string name, bool caseSensitive ) : Spring.Context

Create a new WebApplicationContext, loading the definitions from the given XML resource and also all fluently configured ones.

FluentWebApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : Spring.Context

Create a new WebApplicationContext with the given parent, from the given XML resource and also all fluently configured ones.

Méthodes protégées

Méthode Description
LoadObjectDefinitions ( Spring.Objects.Factory.Support.DefaultListableObjectFactory objectFactory ) : void

Loads the object definitions. That's where the call is made to load the fluent configuration.

Method Details

FluentWebApplicationContext() public méthode

Create a new WebApplicationContext, loading the definitions from the given XML resource and also all fluently configured ones.
public FluentWebApplicationContext ( ) : Spring.Context
Résultat Spring.Context

FluentWebApplicationContext() public méthode

Create a new WebApplicationContext, loading the definitions from the given XML resource and also all fluently configured ones.
public FluentWebApplicationContext ( string name, bool caseSensitive ) : Spring.Context
name string The application context name.
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
Résultat Spring.Context

FluentWebApplicationContext() public méthode

Create a new WebApplicationContext with the given parent, from the given XML resource and also all fluently configured ones.
public FluentWebApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : Spring.Context
name string The application context name.
caseSensitive bool Flag specifying whether to make this context case sensitive or not.
parentContext IApplicationContext The parent context.
Résultat Spring.Context

LoadObjectDefinitions() protected méthode

Loads the object definitions. That's where the call is made to load the fluent configuration.
protected LoadObjectDefinitions ( Spring.Objects.Factory.Support.DefaultListableObjectFactory objectFactory ) : void
objectFactory Spring.Objects.Factory.Support.DefaultListableObjectFactory The object factory.
Résultat void