Méthode | Description | |
---|---|---|
MoveToElement ( XmlReader xr, bool skipCurrent ) : string |
Read from the XmlReader until we encounter an element. Return the Local name of the element or null if no element was found before the end of the input.
|
|
MoveToElement ( XmlReader xr, bool skipCurrent, string elemName ) : void |
Read from the XmlReader until we encounter an element. If the name doesn't match elemName then throw an exception, else return normally.
|
|
ReadAttributeAsDouble ( XmlReader xr, string attrName ) : double |
Read the named attribute and parse its string value as a double.
|
|
ReadAttributeAsDoubleArray ( XmlReader xr, string attrName ) : double[] |
Read the named attribute and parse its string value as an array of doubles.
|
|
ReadAttributeAsInt ( XmlReader xr, string attrName ) : int |
Read the named attribute and parse its string value as an integer.
|
|
ReadAttributeAsUInt ( XmlReader xr, string attrName ) : uint |
Read the named attribute and parse its string value as a uint.
|
|
WriteAttributeString ( |
Writes a double array as a comma separated list of values.
|
public static MoveToElement ( XmlReader xr, bool skipCurrent ) : string | ||
xr | XmlReader | |
skipCurrent | bool | |
Résultat | string |
public static MoveToElement ( XmlReader xr, bool skipCurrent, string elemName ) : void | ||
xr | XmlReader | |
skipCurrent | bool | |
elemName | string | |
Résultat | void |
public static ReadAttributeAsDouble ( XmlReader xr, string attrName ) : double | ||
xr | XmlReader | |
attrName | string | |
Résultat | double |
public static ReadAttributeAsDoubleArray ( XmlReader xr, string attrName ) : double[] | ||
xr | XmlReader | |
attrName | string | |
Résultat | double[] |
public static ReadAttributeAsInt ( XmlReader xr, string attrName ) : int | ||
xr | XmlReader | |
attrName | string | |
Résultat | int |
public static ReadAttributeAsUInt ( XmlReader xr, string attrName ) : uint | ||
xr | XmlReader | |
attrName | string | |
Résultat | uint |
public static WriteAttributeString ( |
||
xw | ||
attrName | string | |
arr | double | |
Résultat | void |