ValueConverterAttribute Class

Specifies a custom ArgumentConverter to use for the keys of a dictionary argument.

Definition

Namespace: Ookii.CommandLine.Conversion
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public sealed class ValueConverterAttribute : Attribute
Inheritance
Object    Attribute    ValueConverterAttribute

Remarks

This attribute can be used along with the KeyConverterAttribute and KeyValueSeparatorAttribute attributes to customize the parsing of a dictionary argument without having to write a custom ArgumentConverter that returns a KeyValuePairTKey, TValue.

The type specified by this attribute must derive from the ArgumentConverter class.

This attribute is ignored if the argument uses the ArgumentConverterAttribute or if the argument is not a dictionary argument.

Constructors

ValueConverterAttribute(String) Initializes a new instance of the ValueConverterAttribute class with the specified converter type name.
ValueConverterAttribute(Type) Initializes a new instance of the ValueConverterAttribute class with the specified converter type.

Properties

ConverterTypeName Gets the fully qualified name of the Type to use as a converter.
TypeIdWhen implemented in a derived class, gets a unique identifier for this Attribute.
(Inherited from Attribute)

Methods

EqualsReturns a value that indicates whether this instance is equal to a specified object.
(Inherited from Attribute)
GetHashCodeReturns the hash code for this instance.
(Inherited from Attribute)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IsDefaultAttributeWhen overridden in a derived class, indicates whether the value of this instance is the default value for the derived class.
(Inherited from Attribute)
MatchWhen overridden in a derived class, returns a value that indicates whether this instance equals a specified object.
(Inherited from Attribute)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

See Also