XamlXmlReader Class
Processes XAML markup from XML files by using an XmlReader intermediary, and produces a XAML node stream.
Assembly: System.Xaml (in System.Xaml.dll)
| Name | Description | |
|---|---|---|
![]() | XamlXmlReader(Stream^) | Initializes a new instance of the XamlXmlReader class, based on a stream. |
![]() | XamlXmlReader(Stream^, XamlSchemaContext^) | Initializes a new instance of the XamlXmlReader class, based on a stream, and using a supplied XAML schema context. |
![]() | XamlXmlReader(Stream^, XamlSchemaContext^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on a stream, with a supplied XAML schema context and XAML-specific settings. |
![]() | XamlXmlReader(Stream^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on a stream, with XAML-specific settings. |
![]() | XamlXmlReader(String^) | Initializes a new instance of the XamlXmlReader class, based on a file name of a file to load into a default XML reader. |
![]() | XamlXmlReader(String^, XamlSchemaContext^) | Initializes a new instance of the XamlXmlReader class, based on the file name of a file to load into a default XML reader, with a supplied XAML schema context. |
![]() | XamlXmlReader(String^, XamlSchemaContext^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on the file name of a file to load into a default XML reader, and using a supplied XAML schema context and XAML-specific reader settings. |
![]() | XamlXmlReader(String^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on the file name of a file to load into a default XML reader, and using XAML-specific reader settings. |
![]() | XamlXmlReader(TextReader^) | Initializes a new instance of the XamlXmlReader class, based on a TextReader. |
![]() | XamlXmlReader(TextReader^, XamlSchemaContext^) | Initializes a new instance of the XamlXmlReader class, based on a TextReader, with a supplied schema context and XAML-specific settings. |
![]() | XamlXmlReader(TextReader^, XamlSchemaContext^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on a TextReader, and using a supplied schema context and XAML-specific settings. |
![]() | XamlXmlReader(TextReader^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, based on a TextReader, and using XAML-specific settings. |
![]() | XamlXmlReader(XmlReader^) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader. |
![]() | XamlXmlReader(XmlReader^, XamlSchemaContext^) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader and schema context. |
![]() | XamlXmlReader(XmlReader^, XamlSchemaContext^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader, schema context, and reader settings. |
![]() | XamlXmlReader(XmlReader^, XamlXmlReaderSettings^) | Initializes a new instance of the XamlXmlReader class, using the provided XmlReader and reader settings. |
| Name | Description | |
|---|---|---|
![]() | HasLineInfo | Gets a value that specifies whether line information is available. |
![]() | IsDisposed | Gets whether Dispose has been called.(Inherited from XamlReader.) |
![]() | IsEof | Gets a value that reports whether the reader position in the XAML node stream is at end-of-file.(Overrides XamlReader::IsEof.) |
![]() | LineNumber | Gets the line number to report. |
![]() | LinePosition | Gets the line position to report. |
![]() | Member | Gets the current member at the reader position, if the current reader position is on a StartMember.(Overrides XamlReader::Member.) |
![]() | Namespace | Gets the XAML namespace from the current node.(Overrides XamlReader::Namespace.) |
![]() | NodeType | Gets the type of the current node.(Overrides XamlReader::NodeType.) |
![]() | SchemaContext | Gets an object that provides schema information for the information set.(Overrides XamlReader::SchemaContext.) |
![]() | Type | Gets the XamlType of the current node.(Overrides XamlReader::Type.) |
![]() | Value | Gets the value of the current node.(Overrides XamlReader::Value.) |
| Name | Description | |
|---|---|---|
![]() | Close() | Closes the XAML node stream.(Inherited from XamlReader.) |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the XamlReader, and optionally, releases the managed resources. (Inherited from XamlReader.) |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | Read() | Provides the next XAML node from the loaded source, if a XAML node is available. (Overrides XamlReader::Read().) |
![]() | ReadSubtree() | Returns a XamlReader that is based on the current XamlReader, where the returned XamlReader is used to iterate through a subtree of the XAML node structure.(Inherited from XamlReader.) |
![]() | Skip() | Skips the current node and advances the reader position to the next node.(Inherited from XamlReader.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IDisposable::Dispose() | This API supports the product infrastructure and is not intended to be used directly from your code. Releases all resources used by the current instance of the XamlReader class.(Inherited from XamlReader.) |
When you construct a XamlXmlReader, an XmlReader is required. The purpose of this design is to use established Microsoft .NET Framework APIs for XML processing in order to handle stream input, to obtain a stream from a file, and so on.
XmlReader is the first component of the standard load path for XAML operations and is incorporated by XamlServices::Load as well as by several existing framework XAML implementations for loading XAML.
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





