ServiceCollectionDescriptorExtensions.Add Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
Add(IServiceCollection, ServiceDescriptor) |
Добавляет заданный объект |
Add(IServiceCollection, IEnumerable<ServiceDescriptor>) |
Добавляет последовательность ServiceDescriptor в |
Add(IServiceCollection, ServiceDescriptor)
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
Добавляет заданный объект descriptor
в collection
.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ Add(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ descriptor);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Add (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Microsoft.Extensions.DependencyInjection.ServiceDescriptor descriptor);
static member Add : Microsoft.Extensions.DependencyInjection.IServiceCollection * Microsoft.Extensions.DependencyInjection.ServiceDescriptor -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function Add (collection As IServiceCollection, descriptor As ServiceDescriptor) As IServiceCollection
Параметры
- collection
- IServiceCollection
- descriptor
- ServiceDescriptor
Добавляемый объект ServiceDescriptor.
Возвращаемое значение
Ссылка на текущий экземпляр IServiceCollection.
Применяется к
Add(IServiceCollection, IEnumerable<ServiceDescriptor>)
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
- Исходный код:
- ServiceCollectionDescriptorExtensions.cs
Добавляет последовательность ServiceDescriptor в collection
.
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ Add(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, System::Collections::Generic::IEnumerable<Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^> ^ descriptors);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Add (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> descriptors);
static member Add : Microsoft.Extensions.DependencyInjection.IServiceCollection * seq<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function Add (collection As IServiceCollection, descriptors As IEnumerable(Of ServiceDescriptor)) As IServiceCollection
Параметры
- collection
- IServiceCollection
- descriptors
- IEnumerable<ServiceDescriptor>
Добавляемые ServiceDescriptor.
Возвращаемое значение
Ссылка на текущий экземпляр IServiceCollection.