ABsoluteMaybe.Tests.Persistence.XmlCommandsStub.Load C# (CSharp) Method

Load() protected method

protected Load ( ) : System.Xml.Linq.XDocument
return System.Xml.Linq.XDocument
        protected override XDocument Load()
        {
            return String.IsNullOrWhiteSpace(SavedXml)
                   	? new XDocument(new XElement("Experiments"))
                   	: XDocument.Parse(SavedXml);
        }