IMutableDependencyResolver.UnregisterCurrent(Type?) method¶
Defined in
Type: IMutableDependencyResolver
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, net471
Overloads¶
- 1.
void UnregisterCurrent(Type? serviceType) - 2.
void UnregisterCurrent(Type? serviceType, string? contract) - 3.
void UnregisterCurrent<T>() - 4.
void UnregisterCurrent<T>(string? contract)
1. Overload¶
void UnregisterCurrent(Type? serviceType)
Summary: Unregisters the current instance of the specified service type from the context.
Parameters
| Name | Type | Description |
|---|---|---|
serviceType | Type? | The type of the service to unregister. If null, the default service type is used. |
Remarks
If no instance of the specified service type is registered, this method has no effect.
2. Overload¶
void UnregisterCurrent(Type? serviceType, string? contract)
Summary: Unregisters the current instance of the specified service type and contract from the container.
Parameters
| Name | Type | Description |
|---|---|---|
serviceType | Type? | The type of the service to unregister. If null, the default service type is used. |
contract | string? | An optional contract name that identifies the registration to remove. If null, the default contract is used. |
3. Overload¶
void UnregisterCurrent<T>()
Summary: Unregisters the current instance of the specified type from the context.
Type parameters
| Name | Description |
|---|---|
T | The type of the instance to unregister from the current context. |
4. Overload¶
void UnregisterCurrent<T>(string? contract)
Summary: Unregisters the current instance of type T associated with the specified contract, if any.
Type parameters
| Name | Description |
|---|---|
T | The type of the instance to unregister. |
Parameters
| Name | Type | Description |
|---|---|---|
contract | string? | An optional contract name that specifies which registration to remove. If null, the default registration for type T is unregistered. |
Remarks
If no instance of type T is registered with the specified contract, this method has no effect.