Spring.Context.Support.XmlApplicationContext.XmlApplicationContext C# (CSharp) Method

XmlApplicationContext() 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 XmlApplicationContext ( bool refresh, string name, bool caseSensitive, IApplicationContext parentContext ) : Spring.Core.IO
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 Spring.Core.IO
        public XmlApplicationContext(
            bool refresh,
            string name,
            bool caseSensitive,
            IApplicationContext parentContext,
            params string[] configurationLocations)
            : this(new XmlApplicationContextArgs(name, parentContext, configurationLocations, null, true, refresh))
        { }

Same methods

XmlApplicationContext::XmlApplicationContext ( ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( IApplicationContext parentContext ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( Spring.Context.Support.XmlApplicationContextArgs args ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( bool caseSensitive ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( bool caseSensitive, IApplicationContext parentContext ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( bool refresh, string name, bool caseSensitive, IApplicationContext parentContext, string configurationLocations, IResource configurationResources ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( string name, bool caseSensitive ) : Spring.Core.IO
XmlApplicationContext::XmlApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : Spring.Core.IO
XmlApplicationContext