At.FF.Krems.Utils.BrowserConfiguration.Load C# (CSharp) Method

Load() public method

Loads the XML configuration.
public Load ( ) : void
return void
        public void Load()
        {
            var xmlSerializer = new XmlSerializer(typeof(BrowserConfig));
            using (var xmlReader = XmlReader.Create(Constants.XmlFile))
            {
                this.Config = (BrowserConfig)xmlSerializer.Deserialize(xmlReader);
            }
        }
BrowserConfiguration