KeyValuePairConverterTKey, TValue(LocalizedStringProvider, String, Boolean, Type, Type, String) Constructor

Initializes a new instance of the KeyValuePairConverterTKey, TValue class.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 3.0.0
C#
public KeyValuePairConverter(
	LocalizedStringProvider stringProvider,
	string argumentName,
	bool allowNullValues,
	Type? keyConverterType,
	Type? valueConverterType,
	string? separator
)

Parameters

stringProvider  LocalizedStringProvider
Provides a LocalizedStringProvider to get error messages.
argumentName  String
The name of the argument that this converter is for.
allowNullValues  Boolean
Indicates whether the type of the pair's value accepts values.
keyConverterType  Type
Provides an optional TypeConverter type to use to convert keys. If , the default converter for TKey is used.
valueConverterType  Type
Provides an optional TypeConverter type to use to convert values. If , the default converter for TValue is used.
separator  String
Provides an optional custom key/value separator. If , the value of DefaultSeparator is used.

Remarks

If either keyConverterType or valueConverterType is , conversion of those types is done using the rules outlined in the documentation for the ConvertToArgumentType(CultureInfo, String) method.

Exceptions

ArgumentNullExceptionstringProvider or argumentName is .
ArgumentExceptionseparator is an empty string.
NotSupportedExceptionEither the key or value TypeConverter does not support converting from a string.

See Also