Click or drag to resize

ResolutionExtensionsInjectPropertiesTService Method (IComponentContext, TService, IPropertySelector, Parameter)

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,
	params Parameter[] parameters
)

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: Autofac.CoreParameter
Optional parameters to use during the property injection.

Type Parameters

TService
Type of instance. Used only to provide method chaining.

Return Value

Type: TService
instance.

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