C# 클래스 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.
상속: Spring.Context.Support.WebApplicationContext
파일 보기 프로젝트 열기: thenapoleon/Fluent-API-for-Spring.Net

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
LoadObjectDefinitions ( Spring.Objects.Factory.Support.DefaultListableObjectFactory objectFactory ) : void

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

메소드 상세

FluentWebApplicationContext() 공개 메소드

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

FluentWebApplicationContext() 공개 메소드

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.
리턴 Spring.Context

FluentWebApplicationContext() 공개 메소드

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.
리턴 Spring.Context

LoadObjectDefinitions() 보호된 메소드

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.
리턴 void