XmlParserContext Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Provides all the context information required by the XmlReader to parse an XML fragment.

Inheritance Hierarchy

System.Object
  System.Xml.XmlParserContext

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)

Syntax

'Declaration
Public Class XmlParserContext
public class XmlParserContext

The XmlParserContext type exposes the following members.

Constructors

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace) Initializes a new instance of the XmlParserContext class with the specified XmlNameTable, XmlNamespaceManager, xml:lang, and xml:space values.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace, Encoding) Initializes a new instance of the XmlParserContext class with the specified XmlNameTable, XmlNamespaceManager, xml:lang, xml:space, and encoding.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace) Initializes a new instance of the XmlParserContext class with the specified XmlNameTable, XmlNamespaceManager, base URI, xml:lang, xml:space, and document type values.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace, Encoding) Initializes a new instance of the XmlParserContext class with the specified XmlNameTable, XmlNamespaceManager, base URI, xml:lang, xml:space, encoding, and document type values.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 BaseURI Gets or sets the base URI.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 DocTypeName Gets or sets the name of the document type declaration.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Encoding Gets or sets the encoding type.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 InternalSubset Gets or sets the internal DTD subset.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 NamespaceManager Gets or sets the XmlNamespaceManager.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 NameTable Gets the XmlNameTable used to atomize strings. For more information on atomized strings, see XmlNameTable.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 PublicId Gets or sets the public identifier.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 SystemId Gets or sets the system identifier.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlLang Gets or sets the current xml:lang scope.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 XmlSpace Gets or sets the current xml:space scope.

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetType Gets the Type of the current instance. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Examples

Dim xmlFrag As String = "<item rk:ID='abc-23'>hammer</item> " & _
    "<item rk:ID='r2-435'>paint</item>" & _
    "<item rk:ID='abc-39'>saw</item>"

' Create the XmlNamespaceManager.
Dim nt As New NameTable()
Dim nsmgr As New XmlNamespaceManager(nt)
nsmgr.AddNamespace("rk", "urn:store-items")

' Create the XmlParserContext.
Dim context As New XmlParserContext(Nothing, nsmgr, Nothing, XmlSpace.None)

' Create the reader. 
Dim settings As New XmlReaderSettings()
settings.ConformanceLevel = ConformanceLevel.Fragment
Using reader As XmlReader = XmlReader.Create(New StringReader(xmlFrag), settings, context)

End Using
string xmlFrag = @"<item rk:ID='abc-23'>hammer</item> 
                        <item rk:ID='r2-435'>paint</item>
                        <item rk:ID='abc-39'>saw</item>";

// Create the XmlNamespaceManager.
NameTable nt = new NameTable();
XmlNamespaceManager nsmgr = new XmlNamespaceManager(nt);
nsmgr.AddNamespace("rk", "urn:store-items");

// Create the XmlParserContext.
XmlParserContext context = new XmlParserContext(null, nsmgr, null, XmlSpace.None);

// Create the reader. 
XmlReaderSettings settings = new XmlReaderSettings();
settings.ConformanceLevel = ConformanceLevel.Fragment;
using (XmlReader reader = XmlReader.Create(new StringReader(xmlFrag), settings, context))
{
}

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.