ABsoluteMaybe.Persistence.Xml.XmlExperimentQueries.Load C# (CSharp) 메소드

Load() 보호된 메소드

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