NLog.Targets.Target.GetAllLayouts C# (CSharp) Method

GetAllLayouts() private method

private GetAllLayouts ( ) : void
return void
        private void GetAllLayouts()
        {
            this.allLayouts = new List<Layout>(ObjectGraphScanner.FindReachableObjects<Layout>(this));
            InternalLogger.Trace("{0} has {1} layouts", this, this.allLayouts.Count);
        }
    }