Arc.Infrastructure.Dependencies.Parameters.ConstructorArgument C# (CSharp) Method

ConstructorArgument() public method

Adds constructor argument.
public ConstructorArgument ( string name, object value ) : IParameters
name string The name.
value object The value.
return IParameters
        public IParameters ConstructorArgument(string name, object value)
        {
            Arguments.Add(name, value);
            return this;
        }