Innovatian.Configuration.XmlConfigurationSource.Parse C# (CSharp) Method

Parse() protected method

Parses the specified XML.
protected Parse ( string xml ) : void
xml string The XML.
return void
        protected virtual void Parse( string xml )
        {
            XDocument loaded = XDocument.Parse( xml );
            Process( loaded );
        }