XamlWriter.WriteNode(XamlReader) Method

Definition

Performs switching based on node type from the XAML reader (NodeType) and calls the relevant Write method for the writer implementation.

public:
 void WriteNode(System::Xaml::XamlReader ^ reader);
public void WriteNode (System.Xaml.XamlReader reader);
member this.WriteNode : System.Xaml.XamlReader -> unit
Public Sub WriteNode (reader As XamlReader)

Parameters

reader
XamlReader

The reader to use for node determination.

Exceptions

reader is null.

The default implementation encountered a XamlNodeType that is not in the default enumeration.

Remarks

Notes for Inheritors

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.

Applies to