RegistrationExtensionsWithParameterTLimit, TReflectionActivatorData, TStyle Method (IRegistrationBuilderTLimit, TReflectionActivatorData, TStyle, String, Object) |
Configure an explicit value for a constructor parameter.
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public static IRegistrationBuilder<TLimit, TReflectionActivatorData, TStyle> WithParameter<TLimit, TReflectionActivatorData, TStyle>(
this IRegistrationBuilder<TLimit, TReflectionActivatorData, TStyle> registration,
string parameterName,
Object parameterValue
)
where TReflectionActivatorData : ReflectionActivatorData
<ExtensionAttribute>
Public Shared Function WithParameter(Of TLimit, TReflectionActivatorData As ReflectionActivatorData, TStyle) (
registration As IRegistrationBuilder(Of TLimit, TReflectionActivatorData, TStyle),
parameterName As String,
parameterValue As Object
) As IRegistrationBuilder(Of TLimit, TReflectionActivatorData, TStyle)
Parameters
- registration
- Type: Autofac.BuilderIRegistrationBuilderTLimit, TReflectionActivatorData, TStyle
Registration to set parameter on. - parameterName
- Type: SystemString
Name of a constructor parameter on the target type. - parameterValue
- Type: SystemObject
Value to supply to the parameter.
Type Parameters
- TLimit
- Registration limit type.
- TReflectionActivatorData
- Activator data type.
- TStyle
- Registration style.
Return Value
Type:
IRegistrationBuilderTLimit,
TReflectionActivatorData,
TStyleA registration builder allowing further configuration of the component.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IRegistrationBuilderTLimit,
TReflectionActivatorData,
TStyle. 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