| NamedParameter Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: Autofac
 Syntax
SyntaxThe NamedParameter type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | NamedParameter | 
            Initializes a new instance of the NamedParameter class.
             | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | Name | 
            Gets the name of the parameter.
             | 
|  | Value | 
            Gets the value of the parameter.
            (Inherited from ConstantParameter.) | 
 Methods
Methods| 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.) | 
 Examples
ExamplesComponent 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 NamedParameter("amount", 123));
 See Also
See Also