PositionalParameter Class |
Namespace: Autofac
The PositionalParameter type exposes the following members.
Name | Description | |
---|---|---|
PositionalParameter |
Initializes a new instance of the PositionalParameter class.
|
Name | Description | |
---|---|---|
Position |
Gets the zero-based position of the parameter.
| |
Value |
Gets the value of the parameter.
(Inherited from ConstantParameter.) |
Name | Description | |
---|---|---|
CanSupplyValue |
Returns true if the parameter is able to provide a value to a particular site.
(Inherited from ConstantParameter.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Component with parameter...
public class MyComponent { public MyComponent(int amount) { ... } }
Providing the parameter...
var builder = new ContainerBuilder(); builder.RegisterType<MyComponent>(); var container = builder.Build(); var myComponent = container.Resolve<MyComponent>(new PositionalParameter(0, 123));