ResolutionExtensionsInjectPropertiesTService Method (IComponentContext, TService, IPropertySelector, IEnumerableParameter) |
Set any properties on instance that can be resolved by service and that satisfy the
constraints imposed by propertySelector.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static TService InjectProperties<TService>(
this IComponentContext context,
TService instance,
IPropertySelector propertySelector,
IEnumerable<Parameter> parameters
)
<ExtensionAttribute>
Public Shared Function InjectProperties(Of TService) (
context As IComponentContext,
instance As TService,
propertySelector As IPropertySelector,
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. - propertySelector
- Type: Autofac.CoreIPropertySelector
Selector to determine with properties should be injected. - 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