ArgumentConverterAttribute Class

Specifies a custom ArgumentConverter to use for converting the value of an argument from a string.

Definition

Namespace: Ookii.CommandLine.Conversion
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.0.0+bb7ed9a8fdfd1cb21824750a8cf508863ad15086
C#
public sealed class ArgumentConverterAttribute : Attribute
Inheritance
Object    Attribute    ArgumentConverterAttribute

Remarks

The type specified by this attribute must derive from the ArgumentConverter class, and must convert to the type of the argument the attribute is applied to.

Apply this attribute to the property or method defining an argument to use a custom conversion from a string to the type of the argument.

If this attribute is not present, the default conversion will be used.

Constructors

ArgumentConverterAttribute(String) Initializes a new instance of the ArgumentConverterAttribute class with the specified converter type name.
ArgumentConverterAttribute(Type) Initializes a new instance of the ArgumentConverterAttribute 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