System.Xml.XmlParserContext 类

方法描述

提供 XmlReader 分析 XML 片段所需的所有上下文信息。

语法定义(C# System.Xml.XmlParserContext 类 的用法)

public class XmlParserContext

构造函数

构造函数名称 构造函数描述
XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace) 用指定的 XmlNameTable、XmlNamespaceManager、xml:lang 和 xml:space 值初始化 XmlParserContext 类的新实例。
XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace, Encoding) 用指定的 XmlNameTable、XmlNamespaceManager、xml:lang、xml:space 和编码初始化 XmlParserContext 类的新实例。
XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace) 用指定的 XmlNameTable、XmlNamespaceManager、基 URI、xml:lang、xml:space 和文档类型值初始化 XmlParserContext 类的新实例。
XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace, Encoding) 用指定的 XmlNameTable、XmlNamespaceManager、基 URI、xml:lang、xml:space、编码和文档类型值初始化 XmlParserContext 类的新实例。

成员/方法

方法名称 方法描述
Equals(Object) 确定指定的 Object 是否等于当前的 Object。 (继承自 Object。)
Finalize 允许对象在“垃圾回收”回收之前尝试释放资源并执行其他清理操作。 (继承自 Object。)
GetHashCode 用作特定类型的哈希函数。 (继承自 Object。)
GetType 获取当前实例的 Type。 (继承自 Object。)
MemberwiseClone 创建当前 Object 的浅表副本。 (继承自 Object。)
ToString 返回表示当前对象的字符串。 (继承自 Object。)

提示和注释

System.Xml.XmlParserContext 类例子

下面的示例创建一个读取 XML 片段的 XmlReader 对象。

string xmlFrag ="hammer " +
                        "paint" +
                        "saw";

// 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);

继承层次结构

System.Object

System.Xml.XmlParserContext

命名空间

namespace: System.Xml

程序集: System.Xml(在 System.Xml.dll 中)

线程安全

此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。