ResolutionExtensionsInjectPropertiesTService Method (IComponentContext, TService, IEnumerableParameter) |
Set any properties on instance that can be
resolved in the context.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static TService InjectProperties<TService>(
this IComponentContext context,
TService instance,
IEnumerable<Parameter> parameters
)
<ExtensionAttribute>
Public Shared Function InjectProperties(Of TService) (
context As IComponentContext,
instance As TService,
parameters As IEnumerable(Of Parameter)
) As TService
Parameters
- context
- Type: AutofacIComponentContext
The context from which to resolve the service. - instance
- Type: TService
The instance to inject properties into. - parameters
- Type: System.Collections.GenericIEnumerableParameter
Optional parameters to use during the property injection.
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