Method | Description | |
---|---|---|
Append ( string sText ) : void |
append any text
|
|
BeginTable ( ) : void | ||
EndTable ( ) : void | ||
GetEmptyMessage ( ) : string |
|
|
GetNilMessage ( ) : string |
|
|
NPLWriter ( ) | ||
NPLWriter ( StringBuilder buff_ ) | ||
NPLWriter ( int nReservedSize ) | ||
Reset ( ) : void | ||
Reset ( int nReservedSize ) : void | ||
ToString ( ) : string | ||
WriteName ( string name ) : void | ||
WriteName ( string name, bool bUseBrackets ) : void |
write a parameter name
|
|
WriteNil ( ) : void | ||
WriteParamDelimiter ( ) : void | ||
WriteValue ( double value ) : void | ||
WriteValue ( string value ) : void | ||
WriteValue ( string value, bool bInQuotation ) : void |
rite a parameter value
|
public WriteName ( string name, bool bUseBrackets ) : void | ||
name | string | |
bUseBrackets | bool | if false, one has to make sure that the name is a valid NPL name string, without special characters. |
return | void |
public WriteValue ( string value, bool bInQuotation ) : void | ||
value | string | |
bInQuotation | bool | if bInQuotation is true, it writes a parameter text value. Otherwise it will just append the value without encoding it with quotation marks. |
return | void |