ArcFM Responder Mobile Developer Guide
Parse Method (Parser)






The arguments to parse. The arguments to parse.
The destination of the parsed arguments. The destination of the parsed arguments.
Parses an argument list. Parses an argument list.
Syntax
'Declaration
 
Public Function Parse( _
   ByVal args() As System.String, _
   ByVal destination As System.Object _
) As System.Boolean
'Usage
 
Dim instance As Parser
Dim args() As System.String
Dim destination As System.Object
Dim value As System.Boolean
 
value = instance.Parse(args, destination)
public System.bool Parse( 
   System.string[] args,
   System.object destination
)
public function Parse( 
    args: System.Stringarray of;
    destination: System.TObject
): System.Boolean; 
public function Parse( 
   args : System.String[],
   destination : System.Object
) : System.boolean;
public: System.bool Parse( 
   System.string*[]* args,
   System.Object* destination
) 
public:
System.bool Parse( 
   System.array<String^>^ args,
   System.Object^ destination
) 

Parameters

args
The arguments to parse. The arguments to parse.
destination
The destination of the parsed arguments. The destination of the parsed arguments.

Return Value

true if no parse errors were encountered. Returns true if no parse errors were encountered.
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