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)
The XamlXmlReader type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | XamlXmlReader(Stream) | Initializes a new instance of the XamlXmlReader class, based on a stream. |
![]() | 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(TextReader) | Initializes a new instance of the XamlXmlReader class, based on a TextReader. |
![]() | XamlXmlReader(XmlReader) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader. |
![]() | XamlXmlReader(Stream, XamlSchemaContext) | Initializes a new instance of the XamlXmlReader class, based on a stream, and using a supplied XAML schema context. |
![]() | XamlXmlReader(Stream, XamlXmlReaderSettings) | Initializes a new instance of the XamlXmlReader class, based on a stream, with XAML-specific settings. |
![]() | 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, 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, XamlSchemaContext) | Initializes a new instance of the XamlXmlReader class, based on a TextReader, with 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, XamlSchemaContext) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader and schema context. |
![]() | XamlXmlReader(XmlReader, XamlXmlReaderSettings) | Initializes a new instance of the XamlXmlReader class, using the provided XmlReader and reader settings. |
![]() | 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(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(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(XmlReader, XamlSchemaContext, XamlXmlReaderSettings) | Initializes a new instance of the XamlXmlReader class using the provided XmlReader, schema context, 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 | 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 a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | 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 | Infrastructure. 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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
