ArcFM Responder Mobile Developer Guide
Parser Constructor






The type of object to parse.
The destination for parse errors.
Creates a new command line argument parser.
Syntax
'Declaration
 
Public Function New( _
   ByVal argumentSpecification As System.Type, _
   ByVal reporter As ErrorReporter _
)
'Usage
 
Dim argumentSpecification As System.Type
Dim reporter As ErrorReporter
 
Dim instance As New Parser(argumentSpecification, reporter)
public Parser( 
   System.Type argumentSpecification,
   ErrorReporter reporter
)
public Parser( 
    argumentSpecification: System.Type;
    reporter: ErrorReporter
); 
public function Parser( 
   argumentSpecification : System.Type,
   reporter : ErrorReporter
);
public: Parser( 
   System.Type* argumentSpecification,
   ErrorReporter* reporter
)
public:
Parser( 
   System.Type^ argumentSpecification,
   ErrorReporter^ reporter
)

Parameters

argumentSpecification
The type of object to parse.
reporter
The destination for parse errors.
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

Parser Class
Parser Members

Send Feedback