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

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 ) : 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