ResolutionExtensionsInjectUnsetPropertiesTService Method (IComponentContext, TService) |
Set any null-valued properties on instance that can be
resolved by the container.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static TService InjectUnsetProperties<TService>(
this IComponentContext context,
TService instance
)
<ExtensionAttribute>
Public Shared Function InjectUnsetProperties(Of TService) (
context As IComponentContext,
instance As TService
) As TService
Parameters
- context
- Type: AutofacIComponentContext
The context from which to resolve the service. - instance
- Type: TService
The instance to inject properties into.
Type Parameters
- TService
- Type of instance. Used only to provide method chaining.
Return Value
Type:
TServiceinstance.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IComponentContext. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also