Method | Description | |
---|---|---|
GetQuoteCharacter ( ) : char |
Returns the character used as the delimiter for this string. Returns the character used as the delimiter for this string. |
|
GetValue ( ) : string |
Returns the node's value: the parsed string without the enclosing quotes
|
|
GetValue ( bool includeQuotes ) : string |
Returns the string value, optionally including the enclosing quotes. Returns the string value, optionally including the enclosing quotes. |
|
SetQuoteCharacter ( char c ) : void | ||
SetValue ( string value ) : void |
Sets the node's value. Sets the node's value. Do not include the enclosing quotes. |
|
StringLiteral ( ) : System.Text | ||
StringLiteral ( int pos ) : System.Text | ||
StringLiteral ( int pos, int len ) : System.Text |
Creates a string literal node at the specified position. Creates a string literal node at the specified position. |
|
ToSource ( int depth ) : string | ||
Visit ( NodeVisitor v ) : void |
Visits this node. Visits this node. There are no children to visit. |
public GetValue ( bool includeQuotes ) : string | ||
includeQuotes | bool | |
return | string |
public SetValue ( string value ) : void | ||
value | string | the node's value |
return | void |
public StringLiteral ( int pos ) : System.Text | ||
pos | int | |
return | System.Text |
public StringLiteral ( int pos, int len ) : System.Text | ||
pos | int | |
len | int | the length including the enclosing quotes |
return | System.Text |