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.
The created context will be case sensitive.
public XmlApplicationContext ( ) : Spring.Core.IO
return Spring.Core.IO
        public XmlApplicationContext(params string[] configurationLocations)
            : this(new XmlApplicationContextArgs(string.Empty, null, configurationLocations, null, true, true))
        { }

Same methods

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::XmlApplicationContext ( string name, bool caseSensitive, IApplicationContext parentContext ) : Spring.Core.IO
XmlApplicationContext