Méthode | Description | |
---|---|---|
CheckAttributes ( |
Returns a key/value set of all attributes in the element, and checks that an instance of each required key exists in the set.
|
|
SwitchAll ( |
Read all top-level elements in a sub-tree, invoking an action on each element. This helper method automatically advances to the next element after executing an element. If the action itself advances the reader, use SwitchAllAdvance instead. |
|
SwitchAllAdvance ( |
Read all top-level elements in a sub-tree, invoking an action on each element and conditionally advancing to the next element. If the action method returns |
public static CheckAttributes ( |
||
reader | An |
|
reqAttribs | List |
A list of all attributes which are required to be present in the element. |
Résultat | string>.Dictionary |
public static SwitchAll ( |
||
reader | The |
|
action | string>.Action | A no-return function that takes an |
Résultat | void |
public static SwitchAllAdvance ( |
||
reader | The |
|
func | Func |
A function that takes an |
Résultat | void |