Sitecore.FakeDb.Db.GetConfiguration C# (CSharp) Method

GetConfiguration() private method

private GetConfiguration ( ) : XmlDocument
return System.Xml.XmlDocument
    private XmlDocument GetConfiguration()
    {
      if (this.config != null)
      {
        return this.config;
      }

      Monitor.Enter(Lock);
      this.config = Factory.GetConfiguration();

      return this.config;
    }
  }