C# Class Mono.JavaScript.Node.Debugger.ResultData

Inheritance: IEnumerable
Exibir arquivo Open project: atsushieno/md-typescript Class Usage Examples

Public Methods

Method Description
GetAllValues ( string name ) : object[]
GetEnumerator ( ) : IEnumerator
GetInt ( string name ) : int
GetObject ( int index ) : ResultData
GetObject ( string name ) : ResultData
GetValue ( int index ) : string
GetValue ( string name ) : string

Protected Methods

Method Description
ReadResults ( string str, int pos ) : void

Private Methods

Method Description
ReadArray ( string str, int &pos ) : ResultData
ReadChar ( string str, int &pos, char c ) : void
ReadResult ( string str, int &pos, string &name, object &value ) : void
ReadString ( string str, char term, int &pos ) : string
ReadTuple ( string str, int &pos, ResultData data ) : void
ReadValue ( string str, int &pos ) : object
ThrownParseError ( string str, int pos ) : void
TryReadChar ( string str, int &pos, char c ) : bool

Method Details

GetAllValues() public method

public GetAllValues ( string name ) : object[]
name string
return object[]

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

GetInt() public method

public GetInt ( string name ) : int
name string
return int

GetObject() public method

public GetObject ( int index ) : ResultData
index int
return ResultData

GetObject() public method

public GetObject ( string name ) : ResultData
name string
return ResultData

GetValue() public method

public GetValue ( int index ) : string
index int
return string

GetValue() public method

public GetValue ( string name ) : string
name string
return string

ReadResults() protected method

protected ReadResults ( string str, int pos ) : void
str string
pos int
return void