GlobalGenericFirstDependencyResolver.GetServices() method¶
Defined in
Type: GlobalGenericFirstDependencyResolver
Namespace: Splat
Assembly: Splat.Core.dll
Applies to
net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481
Overloads¶
- 1.
public IEnumerable<T> GetServices<T>() - 2.
public IEnumerable<T> GetServices<T>(string? contract) - 3.
public IEnumerable<object> GetServices(Type? serviceType) - 4.
public IEnumerable<object> GetServices(Type? serviceType, string? contract)
1. Overload¶
public IEnumerable<T> GetServices<T>()
Inherited documentation
These docs were inherited from IReadonlyDependencyResolver. The member doesn't override them on this type.
Summary:
Gets all instances of the given T. Must return an empty
collection if the service is not available (must not return null or throw).
Type parameters
| Name | Description |
|---|---|
T | The object type. |
Returns: IEnumerableT. The sequence
should be empty (not null) if no objects of the given type are available.
2. Overload¶
public IEnumerable<T> GetServices<T>(string? contract)
Inherited documentation
These docs were inherited from IReadonlyDependencyResolver. The member doesn't override them on this type.
Summary:
Gets all instances of the given T. Must return an empty
collection if the service is not available (must not return null or throw).
Type parameters
| Name | Description |
|---|---|
T | The object type. |
Parameters
| Name | Type | Description |
|---|---|---|
contract | string? | A value which will retrieve only objects registered with the same contract. |
Returns: IEnumerableT. The sequence
should be empty (not null) if no objects of the given type are available.
3. Overload¶
public IEnumerable<object> GetServices(Type? serviceType)
Inherited documentation
These docs were inherited from IReadonlyDependencyResolver. The member doesn't override them on this type.
Summary:
Gets all instances of the given serviceType. Must return an empty
collection if the service is not available (must not return null or throw).
Parameters
| Name | Type | Description |
|---|---|---|
serviceType | Type? | The object type. |
Returns: IEnumerable -- A sequence of instances of the requested serviceType. The sequence
should be empty (not null) if no objects of the given type are available.
4. Overload¶
public IEnumerable<object> GetServices(Type? serviceType, string? contract)
Inherited documentation
These docs were inherited from IReadonlyDependencyResolver. The member doesn't override them on this type.
Summary:
Gets all instances of the given serviceType. Must return an empty
collection if the service is not available (must not return null or throw).
Parameters
| Name | Type | Description |
|---|---|---|
serviceType | Type? | The object type. |
contract | string? | A value which will retrieve only objects registered with the same contract. |
Returns: IEnumerable -- A sequence of instances of the requested serviceType. The sequence
should be empty (not null) if no objects of the given type are available.