This topic has not yet been rated - Rate this topic

XmlParserContext Class

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

System.Object
  System.Xml.XmlParserContext

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)
public class XmlParserContext

The XmlParserContext type exposes the following members.

  Name Description
Public method Supported by the XNA Framework Supported by Portable Class Library 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 method Supported by the XNA Framework Supported by Portable Class Library 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 method Supported by the XNA Framework Supported by Portable Class Library 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 method Supported by the XNA Framework Supported by Portable Class Library 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
  Name Description
Public property Supported by the XNA Framework Supported by Portable Class Library BaseURI Gets or sets the base URI.
Public property Supported by the XNA Framework Supported by Portable Class Library DocTypeName Gets or sets the name of the document type declaration.
Public property Supported by the XNA Framework Supported by Portable Class Library Encoding Gets or sets the encoding type.
Public property Supported by the XNA Framework Supported by Portable Class Library InternalSubset Gets or sets the internal DTD subset.
Public property Supported by the XNA Framework Supported by Portable Class Library NamespaceManager Gets or sets the XmlNamespaceManager.
Public property Supported by the XNA Framework Supported by Portable Class Library NameTable Gets the XmlNameTable used to atomize strings. For more information on atomized strings, see XmlNameTable.
Public property Supported by the XNA Framework Supported by Portable Class Library PublicId Gets or sets the public identifier.
Public property Supported by the XNA Framework Supported by Portable Class Library SystemId Gets or sets the system identifier.
Public property Supported by the XNA Framework Supported by Portable Class Library XmlLang Gets or sets the current xml:lang scope.
Public property Supported by the XNA Framework Supported by Portable Class Library XmlSpace Gets or sets the current xml:space scope.
Top
  Name Description
Public method Supported by the XNA Framework Supported by Portable Class Library Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by the XNA Framework Supported by Portable Class Library Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Supported by the XNA Framework Supported by Portable Class Library MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by the XNA Framework Supported by Portable Class Library ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The following example creates an XmlReader object that reads an XML fragment.


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;
XmlReader reader = XmlReader.Create(new StringReader(xmlFrag), settings, context);



.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Portable Class Library

Supported in: Portable Class Library

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, 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.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ