Sitecore.FakeDb.Db.GetConfiguration C# (CSharp) 메소드

GetConfiguration() 개인적인 메소드

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

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

      return this.config;
    }
  }