Class ServiceCollectionExtensions
Extensions to IService
Inherited Members
Namespace: Couchbase.Extensions.DependencyInjection
Assembly: Couchbase.Extensions.DependencyInjection.dll
Syntax
public static class ServiceCollectionExtensions
Methods
| Edit this page View SourceAddCouchbase(IServiceCollection, IConfiguration)
Add Couchbase dependencies to the IService
Declaration
public static IServiceCollection AddCouchbase(this IServiceCollection services, IConfiguration configuration)
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
IConfiguration | configuration | Section from the configuration that can be bound to Cluster |
Returns
Type | Description |
---|---|
IService |
The IService |
AddCouchbase(IServiceCollection, Action<ClusterOptions>?)
Add Couchbase dependencies to the IService
Declaration
public static IServiceCollection AddCouchbase(this IServiceCollection services, Action<ClusterOptions>? options)
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
Action<Cluster |
options | Optional action to configure the Cluster |
Returns
Type | Description |
---|---|
IService |
The IService |
AddCouchbaseBucket<T>(IServiceCollection, string)
Register an interface based on INamed
Declaration
public static IServiceCollection AddCouchbaseBucket<T>(this IServiceCollection services, string bucketName) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | bucketName | The name of the Couchbase bucket. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
AddCouchbaseBucket<T>(IServiceCollection, string, Action<IBucketBuilder>?)
Register an interface based on INamed
Declaration
public static IServiceCollection AddCouchbaseBucket<T>(this IServiceCollection services, string bucketName, Action<IBucketBuilder>? buildAction) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | bucketName | The name of the Couchbase bucket. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
AddCouchbaseBucket<TService, TImplementation>(IServiceCollection, Action<IBucketBuilder>?)
Register an bucket via an interface inherited from INamed
Declaration
public static IServiceCollection AddCouchbaseBucket<TService, TImplementation>(this IServiceCollection services, Action<IBucketBuilder>? buildAction = null) where TService : class, INamedBucketProvider where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
TService | Interface inherited from INamed |
TImplementation | Concrete implementation of |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
AddKeyedCouchbase(IServiceCollection, string?, IConfiguration)
Add Couchbase dependencies to the IService
Declaration
public static IServiceCollection AddKeyedCouchbase(this IServiceCollection services, string? serviceKey, IConfiguration configuration)
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
IConfiguration | configuration | Section from the configuration that can be bound to Cluster |
Returns
Type | Description |
---|---|
IService |
The IService |
AddKeyedCouchbase(IServiceCollection, string?, Action<ClusterOptions>?)
Add Couchbase dependencies to the IService
Declaration
public static IServiceCollection AddKeyedCouchbase(this IServiceCollection services, string? serviceKey, Action<ClusterOptions>? options)
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
Action<Cluster |
options | Optional action to configure the Cluster |
Returns
Type | Description |
---|---|
IService |
The IService |
AddKeyedCouchbaseBucket<T>(IServiceCollection, string?, string)
Register an interface based on INamed
Declaration
public static IServiceCollection AddKeyedCouchbaseBucket<T>(this IServiceCollection services, string? serviceKey, string bucketName) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
string | bucketName | The name of the Couchbase bucket. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
AddKeyedCouchbaseBucket<T>(IServiceCollection, string?, string?, Action<IBucketBuilder>?)
Register an interface based on INamed
Declaration
public static IServiceCollection AddKeyedCouchbaseBucket<T>(this IServiceCollection services, string? serviceKey, string? bucketName, Action<IBucketBuilder>? buildAction) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
string | bucketName | The name of the Couchbase bucket. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
AddKeyedCouchbaseBucket<TService, TImplementation>(IServiceCollection, string?, Action<IBucketBuilder>?)
Register an bucket via an interface inherited from INamed
Declaration
public static IServiceCollection AddKeyedCouchbaseBucket<TService, TImplementation>(this IServiceCollection services, string? serviceKey, Action<IBucketBuilder>? buildAction = null) where TService : class, INamedBucketProvider where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
TService | Interface inherited from INamed |
TImplementation | Concrete implementation of |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
TryAddCouchbaseBucket<T>(IServiceCollection, string)
Register an interface based on INamed
Declaration
public static IServiceCollection TryAddCouchbaseBucket<T>(this IServiceCollection services, string bucketName) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | bucketName | The name of the Couchbase bucket. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
TryAddCouchbaseBucket<T>(IServiceCollection, string, Action<IBucketBuilder>?)
Register an interface based on INamed
Declaration
public static IServiceCollection TryAddCouchbaseBucket<T>(this IServiceCollection services, string bucketName, Action<IBucketBuilder>? buildAction) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | bucketName | The name of the Couchbase bucket. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
TryAddCouchbaseBucket<TService, TImplementation>(IServiceCollection, Action<IBucketBuilder>?)
Register a bucket via an interface inherited from INamed
Declaration
public static IServiceCollection TryAddCouchbaseBucket<TService, TImplementation>(this IServiceCollection services, Action<IBucketBuilder>? buildAction = null) where TService : class, INamedBucketProvider where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
TService | Interface inherited from INamed |
TImplementation | Concrete implementation of |
TryAddKeyedCouchbaseBucket<T>(IServiceCollection, string?, string)
Register an interface based on INamed
Declaration
public static IServiceCollection TryAddKeyedCouchbaseBucket<T>(this IServiceCollection services, string? serviceKey, string bucketName) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
string | bucketName | The name of the Couchbase bucket. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
TryAddKeyedCouchbaseBucket<T>(IServiceCollection, string?, string, Action<IBucketBuilder>?)
Register an interface based on INamed
Declaration
public static IServiceCollection TryAddKeyedCouchbaseBucket<T>(this IServiceCollection services, string? serviceKey, string bucketName, Action<IBucketBuilder>? buildAction) where T : class, INamedBucketProvider
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
string | bucketName | The name of the Couchbase bucket. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
T | Interface inherited from INamed |
Remarks
This method is not AOT-compatible. Use the overload that accepts a concrete implementation.
TryAddKeyedCouchbaseBucket<TService, TImplementation>(IServiceCollection, string?, Action<IBucketBuilder>?)
Register a bucket via an interface inherited from INamed
Declaration
public static IServiceCollection TryAddKeyedCouchbaseBucket<TService, TImplementation>(this IServiceCollection services, string? serviceKey, Action<IBucketBuilder>? buildAction = null) where TService : class, INamedBucketProvider where TImplementation : class, TService
Parameters
Type | Name | Description |
---|---|---|
IService |
services | The IService |
string | serviceKey | Service key to uniquely represent the cluster. |
Action<IBucket |
buildAction | Action to perform further configuration. |
Returns
Type | Description |
---|---|
IService |
The IService |
Type Parameters
Name | Description |
---|---|
TService | Interface inherited from INamed |
TImplementation | Concrete implementation of |