ArcFM Responder Mobile Developer Guide
ArgumentType Enumeration






Used to control parsing of command line arguments. Used to control parsing of command line arguments.
Syntax
'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 
Members
MemberDescription
AtMostOnceThe 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.
LastOccurenceWinsFor 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.
MultipleInidicates 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.
MultipleUniqueThe 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.
RequiredIndicates 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.
UniqueOnly 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.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Miner.CommandLine.ArgumentType

Requirements

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

See Also

Reference

Miner.CommandLine Namespace

Send Feedback