Miner.CommandLine Namespace : ArgumentType Enumeration |
'Declaration
<System.FlagsAttribute()> Public Enum ArgumentType Inherits System.Enum
'Usage
Dim instance As ArgumentType
[System.Flags()] public enum ArgumentType : System.Enum
public enum ArgumentType = class(System.Enum)
System.FlagsAttribute() public enum ArgumentType extends System.Enum
[System.Flags()] __value public enum ArgumentType : public System.Enum
[System.Flags()] public enum class ArgumentType : public System.Enum
Member | Description |
---|---|
AtMostOnce | The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once. The default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once. |
LastOccurenceWins | For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list. For non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list. |
Multiple | Inidicates that the argument may be specified more than once. Only valid if the argument is a collection Indicates that the argument may be specified more than once. Only valid if the argument is a collection. |
MultipleUnique | The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported. The default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported. |
Required | Indicates that this field is required. An error will be displayed if it is not present when parsing arguments. Indicates that this field is required. An error will be displayed if it is not present when parsing arguments. |
Unique | Only valid in conjunction with Multiple. Duplicate values will result in an error. Only valid in conjunction with Multiple. Duplicate values will result in an error. |
System.Object
System.ValueType
System.Enum
Miner.CommandLine.ArgumentType
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2