Aspectacular.Aspect.GetLogText C# (CSharp) Метод

GetLogText() публичный Метод

Generates log text from a collection of log entries specified by entrySelector delegate. If entrySelector is null, all entries are used generate log text. Environment.NewLine as line separator.
public GetLogText ( Func entrySelector = null ) : string
entrySelector Func /// Optional entry log filter delegate that may use entry.ToString() or its own logic to /// generate text for each selected log entry. ///
Результат string
        public string GetLogText(Func<List<CallLogEntry>, IEnumerable<string>> entrySelector = null)
        {
            return this.GetLogText(null, entrySelector);
        }

Same methods

Aspect::GetLogText ( string lineSeparator, Func entrySelector = null ) : string