EnrichmentServiceCollectionExtensions.AddLogEnricher Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
AddLogEnricher(IServiceCollection, ILogEnricher) |
Регистрирует экземпляр средства обогащения журнала. |
AddLogEnricher<T>(IServiceCollection) |
Регистрирует тип средства обогащения журнала. |
AddLogEnricher(IServiceCollection, ILogEnricher)
- Исходный код:
- EnrichmentServiceCollectionExtensions.cs
- Исходный код:
- EnrichmentServiceCollectionExtensions.cs
Регистрирует экземпляр средства обогащения журнала.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogEnricher(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Microsoft::Extensions::Diagnostics::Enrichment::ILogEnricher ^ enricher);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogEnricher (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher enricher);
static member AddLogEnricher : Microsoft.Extensions.DependencyInjection.IServiceCollection * Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddLogEnricher (services As IServiceCollection, enricher As ILogEnricher) As IServiceCollection
Параметры
- services
- IServiceCollection
Контейнер внедрения зависимостей, в который добавляется экземпляр средства обогащения.
- enricher
- ILogEnricher
Добавляемый экземпляр средства обогащения.
Возвращаемое значение
Значение services
.
Исключения
Параметр services
или enricher
имеет значение null
.
Применяется к
AddLogEnricher<T>(IServiceCollection)
- Исходный код:
- EnrichmentServiceCollectionExtensions.cs
- Исходный код:
- EnrichmentServiceCollectionExtensions.cs
Регистрирует тип средства обогащения журнала.
public:
generic <typename T>
where T : class, Microsoft::Extensions::Diagnostics::Enrichment::ILogEnricher[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddLogEnricher(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogEnricher<T> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where T : class, Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher;
static member AddLogEnricher : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'T : null and 'T :> Microsoft.Extensions.Diagnostics.Enrichment.ILogEnricher)
<Extension()>
Public Function AddLogEnricher(Of T As {Class, ILogEnricher}) (services As IServiceCollection) As IServiceCollection
Параметры типа
- T
Тип обогащения.
Параметры
- services
- IServiceCollection
Контейнер внедрения зависимостей, в который добавляется тип обогащения.
Возвращаемое значение
Значение services
.
Исключения
services
имеет значение null
.