Serilog.Tests.Support.DelegatingEnricher.DelegatingEnricher C# (CSharp) Метод

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

public DelegatingEnricher ( ILogEventPropertyFactory>.Action enrich ) : System
enrich ILogEventPropertyFactory>.Action
Результат System
        public DelegatingEnricher(Action<LogEvent, ILogEventPropertyFactory> enrich)
        {
            if (enrich == null) throw new ArgumentNullException(nameof(enrich));
            _enrich = enrich;
        }