XamlWriter::WriteNode Method (XamlReader^)
Performs switching based on node type from the XAML reader (XamlReader::NodeType) and calls the relevant Write method for the writer implementation.
Assembly: System.Xaml (in System.Xaml.dll)
Parameters
- reader
-
Type:
System.Xaml::XamlReader^
The reader to use for node determination.
| Exception | Condition |
|---|---|
| ArgumentNullException | reader is null. |
| NotImplementedException | The default implementation encountered a XamlNodeType that is not in the default enumeration. |
The WriteNode method is not a virtual method because it has practical implementation for all existing XamlNodeType values. Based on XamlNodeType, WriteNode calls into the Write virtual members that are dedicated to particular node types.
If you have an advanced XAML writing scenario that expands the XAML type system and XAML node stream concept so that new node types are defined, do not use WriteNode calls in your logic. You must instead provide your own alternative for node-type switching logic in the class or in virtual overrides.
Available since 4.0