Méthode | Description | |
---|---|---|
Dispose ( ) : void |
Releases all resources held by the writer
|
|
Write ( System.DateTime value ) : void |
Writes a DateTime to the stream
|
|
Write ( double value ) : void |
Writes a double to the stream
|
|
Write ( int value ) : void |
Writes an integer to the stream
|
|
Write ( string value ) : void |
Writes a string
|
|
Write ( string header, Action |
Writes a structure that is identified by a header
|
|
Write ( string header, IParadoxWrite obj ) : void |
Writes a structure that is identified by a header
|
|
Write ( string value, ValueWrite type ) : void |
Writes a string dictated by a format
|
|
Write ( string key, string value ) : void |
Writes a key-value pair to the stream with no special formatting
|
|
Write ( string key, string value, ValueWrite valuetype ) : void |
Writes a key-value pair to the stream with formatting specified by valuetype. It is assumed that the key will be indented and that the value will not be.
|
|
WriteComment ( string comment ) : void |
Writes a string followed by a line terminator that will be ignored by a paradox parser
|
|
WriteLine ( ) : void |
Writes a line terminator to the text stream
|
|
WriteLine ( string value ) : void |
Writes a string followed by a line terminator to the text stream.
|
|
WriteLine ( string key, System.DateTime date ) : void |
Writes a date and time that is identified by a key. The date is written in a way to conform with how Paradox writes dates
|
|
WriteLine ( string value, ValueWrite valuetype ) : void |
Writes a string in the format of valuetype followed by a line terminator.
|
|
WriteLine ( string key, bool val ) : void |
Writes a boolean that is identified by a key. The boolean is written in a way to conform with how Paradox writes booleans.
|
|
WriteLine ( string key, double val ) : void |
Writes a double that is a identified by a key. The double is written in a way to conform with how Paradox writes doubles.
|
|
WriteLine ( string key, int val ) : void |
Writes an integer that is identified by a key. The integer is written in a way to conform with how Paradox writes integers.
|
|
WriteLine ( string key, string value ) : void |
Writes a string value that is identified by a key followed by a line terminator
|
|
WriteLine ( string key, string value, ValueWrite valuetype ) : void |
Writes a key-value pair followed by a line terminator to the stream with formatting specified by valuetype. It is assumed that the key will be indented and that the value will not be.
|
Méthode | Description | |
---|---|---|
Dispose ( bool disposing ) : void | ||
ParadoxStreamWriter ( Stream output ) : System |
Méthode | Description | |
---|---|---|
UpdateCurrentIndentFromIndentsIn ( string str ) : void |
Given a string, the function will detect squirrely brackets and update the current indent of the writer
|
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
Résultat | void |
protected ParadoxStreamWriter ( Stream output ) : System | ||
output | Stream | |
Résultat | System |
public Write ( System.DateTime value ) : void | ||
value | System.DateTime | DateTime to be written |
Résultat | void |
public Write ( double value ) : void | ||
value | double | Double to be written |
Résultat | void |
public Write ( int value ) : void | ||
value | int | Integer to be written |
Résultat | void |
public Write ( string value ) : void | ||
value | string | String to be written |
Résultat | void |
public abstract Write ( string header, Action |
||
header | string | The string that will identify the following structure |
objWriter | Action |
/// A function that accepts a |
Résultat | void |
public Write ( string header, IParadoxWrite obj ) : void | ||
header | string | The string that will identify the following structure |
obj | IParadoxWrite | The |
Résultat | void |
public Write ( string value, ValueWrite type ) : void | ||
value | string | String to be written |
type | ValueWrite | Denotes what modifications to be made on the string before being written |
Résultat | void |
public Write ( string key, string value ) : void | ||
key | string | Key that identifies the value |
value | string | Value to be written to the stream |
Résultat | void |
public abstract Write ( string key, string value, ValueWrite valuetype ) : void | ||
key | string | Key that identifies the value |
value | string | Value to be written to the stream |
valuetype | ValueWrite | Dictates how the value should be written to the stream. |
Résultat | void |
public abstract WriteComment ( string comment ) : void | ||
comment | string | The string to be written to the file but ignored on parse |
Résultat | void |
public WriteLine ( string value ) : void | ||
value | string | The string to write. If value is null, only the line termination characters are written |
Résultat | void |
public abstract WriteLine ( string key, System.DateTime date ) : void | ||
key | string | Key to be written |
date | System.DateTime | Date to be written |
Résultat | void |
public abstract WriteLine ( string value, ValueWrite valuetype ) : void | ||
value | string | The string to be written to the text stream |
valuetype | ValueWrite | The format of how the string should be written |
Résultat | void |
public WriteLine ( string key, bool val ) : void | ||
key | string | Key to be written |
val | bool | Boolean to be written |
Résultat | void |
public WriteLine ( string key, double val ) : void | ||
key | string | Key to be written. |
val | double | Double to be written |
Résultat | void |
public WriteLine ( string key, int val ) : void | ||
key | string | Key that identifies the value |
val | int | Value to the be written to the stream |
Résultat | void |
public WriteLine ( string key, string value ) : void | ||
key | string | The text can identify the value |
value | string | Value to be written |
Résultat | void |
public abstract WriteLine ( string key, string value, ValueWrite valuetype ) : void | ||
key | string | Key that identifies the value |
value | string | Value to be written to the stream |
valuetype | ValueWrite | Dictates how the value should be written to the stream |
Résultat | void |