ABsoluteMaybe.Persistence.Xml.XmlExperimentQueries.Load C# (CSharp) Method

Load() protected method

protected Load ( ) : System.Xml.Linq.XDocument
return System.Xml.Linq.XDocument
        protected virtual XDocument Load()
        {
            return File.Exists(_pathToXmlStorage)
                   	? XDocument.Load(_pathToXmlStorage)
                   	: new XDocument(new XElement("Experiments"));
        }