XmlParserContext コンストラクター

定義

値を指定して、XmlParserContext クラスの新しいインスタンスを初期化します。

オーバーロード

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace)

XmlParserContextXmlNameTableXmlNamespaceManager、および xml:lang のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace, Encoding)

XmlNameTableXmlNamespaceManagerXmlParserContextxml:lang、およびエンコーディングを指定して、xml:space クラスの新しいインスタンスを初期化します。

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace)

XmlNameTableXmlNamespaceManager、ベース URI、XmlParserContextxml:lang、ドキュメント型のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace, Encoding)

XmlNameTableXmlNamespaceManager、ベース URI、XmlParserContextxml:lang、エンコーディング、およびドキュメント型のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace)

XmlParserContextXmlNameTableXmlNamespaceManager、および xml:lang のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

public:
 XmlParserContext(System::Xml::XmlNameTable ^ nt, System::Xml::XmlNamespaceManager ^ nsMgr, System::String ^ xmlLang, System::Xml::XmlSpace xmlSpace);
public XmlParserContext (System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace);
public XmlParserContext (System.Xml.XmlNameTable? nt, System.Xml.XmlNamespaceManager? nsMgr, string? xmlLang, System.Xml.XmlSpace xmlSpace);
new System.Xml.XmlParserContext : System.Xml.XmlNameTable * System.Xml.XmlNamespaceManager * string * System.Xml.XmlSpace -> System.Xml.XmlParserContext
Public Sub New (nt As XmlNameTable, nsMgr As XmlNamespaceManager, xmlLang As String, xmlSpace As XmlSpace)

パラメーター

nt
XmlNameTable

文字列を最小単位に分割するために使用する XmlNameTable。 このパラメーターが null の場合は、nsMgr を構築するために使用される名前テーブルが代わりに使用されます。 最小単位に分割された文字列の詳細については、XmlNameTable のトピックを参照してください。

nsMgr
XmlNamespaceManager

名前空間情報を検索するために使用する XmlNamespaceManager。または null

xmlLang
String

xml:lang スコープ。

xmlSpace
XmlSpace

xml:space スコープを示す XmlSpace 値。

例外

nt が、nsMgr を構築するために使用される XmlNameTable と異なります。

次の例では、XML フラグメントを読み取ります。 名前空間の一致を XmlParserContext 処理するために、その XmlNamespaceManager 要素とを使用します。

using System;
using System.IO;
using System.Xml;

public class Sample
{
    public static void Main()
    {
        XmlTextReader reader = null;

        try
        {
            //Create the XML fragment to be parsed.
            string xmlFrag = "<book> " +
                            "<title>Pride And Prejudice</title>" +
                            "<bk:genre>novel</bk:genre>" +
                            "</book>";

            //Create the XmlNamespaceManager that is used to
            //look up namespace information.
            NameTable nt = new NameTable();
            XmlNamespaceManager nsmgr = new XmlNamespaceManager(nt);
            nsmgr.AddNamespace("bk", "urn:sample");

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

            //Implement the reader.
            reader = new XmlTextReader(xmlFrag, XmlNodeType.Element, context);

            //Parse the XML fragment.  If they exist, display the
            //prefix and namespace URI of each element.
            while (reader.Read())
            {
                if (reader.IsStartElement())
                {
                    if (string.IsNullOrEmpty(reader.Prefix))
                    {
                        Console.WriteLine("<{0}>", reader.LocalName);
                    }
                    else
                    {
                        Console.Write("<{0}:{1}>", reader.Prefix, reader.LocalName);
                        Console.WriteLine(" The namespace URI is " + reader.NamespaceURI);
                    }
                }
            }
        }

        finally
        {
            if (reader != null)
                reader.Close();
        }
    }
} // End class
Imports System.IO
Imports System.Xml

Public Class Sample

    Public Shared Sub Main()
        Dim reader As XmlTextReader = Nothing

        Try
            'Create the XML fragment to be parsed.
            Dim xmlFrag As String = "<book> " & _
                                    "<title>Pride And Prejudice</title>" & _
                                    "<bk:genre>novel</bk:genre>" & _
                                    "</book>"

            'Create the XmlNamespaceManager that is used to
            'look up namespace information.
            Dim nt As New NameTable()
            Dim nsmgr As New XmlNamespaceManager(nt)
            nsmgr.AddNamespace("bk", "urn:sample")

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

            'Implement the reader. 
            reader = New XmlTextReader(xmlFrag, XmlNodeType.Element, context)

            'Parse the XML fragment.  If they exist, display the   
            'prefix and namespace URI of each element.
            While reader.Read()
                If reader.IsStartElement() Then
                    If reader.Prefix = String.Empty Then
                        Console.WriteLine("<{0}>", reader.LocalName)
                    Else
                        Console.Write("<{0}:{1}>", reader.Prefix, reader.LocalName)
                        Console.WriteLine(" The namespace URI is " & reader.NamespaceURI)
                    End If
                End If
            End While
        Finally
            If Not (reader Is Nothing) Then
                reader.Close()
            End If
        End Try
    End Sub
End Class

適用対象

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, XmlSpace, Encoding)

XmlNameTableXmlNamespaceManagerXmlParserContextxml:lang、およびエンコーディングを指定して、xml:space クラスの新しいインスタンスを初期化します。

public:
 XmlParserContext(System::Xml::XmlNameTable ^ nt, System::Xml::XmlNamespaceManager ^ nsMgr, System::String ^ xmlLang, System::Xml::XmlSpace xmlSpace, System::Text::Encoding ^ enc);
public XmlParserContext (System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc);
public XmlParserContext (System.Xml.XmlNameTable? nt, System.Xml.XmlNamespaceManager? nsMgr, string? xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding? enc);
new System.Xml.XmlParserContext : System.Xml.XmlNameTable * System.Xml.XmlNamespaceManager * string * System.Xml.XmlSpace * System.Text.Encoding -> System.Xml.XmlParserContext
Public Sub New (nt As XmlNameTable, nsMgr As XmlNamespaceManager, xmlLang As String, xmlSpace As XmlSpace, enc As Encoding)

パラメーター

nt
XmlNameTable

文字列を最小単位に分割するために使用する XmlNameTable。 このパラメーターが null の場合は、nsMgr を構築するために使用される名前テーブルが代わりに使用されます。 最小単位に分割された文字列の詳細については、XmlNameTable のトピックを参照してください。

nsMgr
XmlNamespaceManager

名前空間情報を検索するために使用する XmlNamespaceManager。または null

xmlLang
String

xml:lang スコープ。

xmlSpace
XmlSpace

xml:space スコープを示す XmlSpace 値。

enc
Encoding

エンコーディングの設定を示す Encoding オブジェクト。

例外

nt が、nsMgr を構築するために使用される XmlNameTable と異なります。

適用対象

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace)

XmlNameTableXmlNamespaceManager、ベース URI、XmlParserContextxml:lang、ドキュメント型のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

public:
 XmlParserContext(System::Xml::XmlNameTable ^ nt, System::Xml::XmlNamespaceManager ^ nsMgr, System::String ^ docTypeName, System::String ^ pubId, System::String ^ sysId, System::String ^ internalSubset, System::String ^ baseURI, System::String ^ xmlLang, System::Xml::XmlSpace xmlSpace);
public XmlParserContext (System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace);
public XmlParserContext (System.Xml.XmlNameTable? nt, System.Xml.XmlNamespaceManager? nsMgr, string? docTypeName, string? pubId, string? sysId, string? internalSubset, string? baseURI, string? xmlLang, System.Xml.XmlSpace xmlSpace);
new System.Xml.XmlParserContext : System.Xml.XmlNameTable * System.Xml.XmlNamespaceManager * string * string * string * string * string * string * System.Xml.XmlSpace -> System.Xml.XmlParserContext
Public Sub New (nt As XmlNameTable, nsMgr As XmlNamespaceManager, docTypeName As String, pubId As String, sysId As String, internalSubset As String, baseURI As String, xmlLang As String, xmlSpace As XmlSpace)

パラメーター

nt
XmlNameTable

文字列を最小単位に分割するために使用する XmlNameTable。 このパラメーターが null の場合は、nsMgr を構築するために使用される名前テーブルが代わりに使用されます。 最小単位に分割された文字列の詳細については、XmlNameTable のトピックを参照してください。

nsMgr
XmlNamespaceManager

名前空間情報を検索するために使用する XmlNamespaceManager。または null

docTypeName
String

ドキュメント型宣言の名前。

pubId
String

パブリック識別子。

sysId
String

システム識別子。

internalSubset
String

内部 DTD サブセット。 DTD サブセットはエンティティ解決に使用され、ドキュメント検証には使用されません。

baseURI
String

XML フラグメントのベース URI (フラグメントの読み込み元の場所)。

xmlLang
String

xml:lang スコープ。

xmlSpace
XmlSpace

xml:space スコープを示す XmlSpace 値。

例外

nt が、nsMgr を構築するために使用される XmlNameTable と異なります。

次の例では、XML フラグメントを読み取るために an XmlParserContext を使用します。

using System;
using System.IO;
using System.Xml;

public class Sample
{
    public static void Main()
    {
        XmlTextReader reader = null;

        try
        {
            //Create the XML fragment to be parsed.
            string xmlFrag = "<book genre='novel' misc='sale-item &h;'></book>";

            //Create the XmlParserContext. The XmlParserContext provides the
            //necessary DTD information so that the entity reference can be expanded.
            XmlParserContext context;
            string subset = "<!ENTITY h 'hardcover'>";
            context = new XmlParserContext(null, null, "book", null, null, subset, "", "", XmlSpace.None);

            //Create the reader.
            reader = new XmlTextReader(xmlFrag, XmlNodeType.Element, context);

            //Read the all the attributes on the book element.
            reader.MoveToContent();
            while (reader.MoveToNextAttribute())
            {
                Console.WriteLine("{0} = {1}", reader.Name, reader.Value);
            }
        }
        finally
        {
            if (reader != null)
                reader.Close();
        }
    }
} // End class
Option Explicit On
Option Strict On

Imports System.IO
Imports System.Xml

Public Class Sample

    Public Shared Sub Main()
        Dim reader As XmlTextReader = Nothing
        Try
            'Create the XML fragment to be parsed.
            Dim xmlFrag As String = "<book genre='novel' misc='sale-item &h;'></book>"

            'Create the XmlParserContext. The XmlParserContext provides the 
            'necessary DTD information so that the entity reference can be expanded.
            Dim context As XmlParserContext
            Dim subset As String = "<!ENTITY h 'hardcover'>"
            context = New XmlParserContext(Nothing, Nothing, "book", Nothing, Nothing, subset, "", "", XmlSpace.None)

            'Create the reader. 
            reader = New XmlTextReader(xmlFrag, XmlNodeType.Element, context)

            'Read the all the attributes on the book element.
            reader.MoveToContent()
            While reader.MoveToNextAttribute()
                Console.WriteLine("{0} = {1}", reader.Name, reader.Value)
            End While
        Finally
            If Not (reader Is Nothing) Then
                reader.Close()
            End If
        End Try
    End Sub
End Class

注釈

このコンストラクターは、次で必要なすべての DocumentType 情報を XmlValidatingReader提供します。 これが XmlParserContext 1 に XmlTextReader渡された場合、すべての DTD 情報は無視されます。

DTD を internalSubset渡した場合、DTD はドキュメントの検証ではなくエンティティ解決に使用されます。

適用対象

XmlParserContext(XmlNameTable, XmlNamespaceManager, String, String, String, String, String, String, XmlSpace, Encoding)

XmlNameTableXmlNamespaceManager、ベース URI、XmlParserContextxml:lang、エンコーディング、およびドキュメント型のそれぞれの値を指定して、xml:space クラスの新しいインスタンスを初期化します。

public:
 XmlParserContext(System::Xml::XmlNameTable ^ nt, System::Xml::XmlNamespaceManager ^ nsMgr, System::String ^ docTypeName, System::String ^ pubId, System::String ^ sysId, System::String ^ internalSubset, System::String ^ baseURI, System::String ^ xmlLang, System::Xml::XmlSpace xmlSpace, System::Text::Encoding ^ enc);
public XmlParserContext (System.Xml.XmlNameTable nt, System.Xml.XmlNamespaceManager nsMgr, string docTypeName, string pubId, string sysId, string internalSubset, string baseURI, string xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding enc);
public XmlParserContext (System.Xml.XmlNameTable? nt, System.Xml.XmlNamespaceManager? nsMgr, string? docTypeName, string? pubId, string? sysId, string? internalSubset, string? baseURI, string? xmlLang, System.Xml.XmlSpace xmlSpace, System.Text.Encoding? enc);
new System.Xml.XmlParserContext : System.Xml.XmlNameTable * System.Xml.XmlNamespaceManager * string * string * string * string * string * string * System.Xml.XmlSpace * System.Text.Encoding -> System.Xml.XmlParserContext
Public Sub New (nt As XmlNameTable, nsMgr As XmlNamespaceManager, docTypeName As String, pubId As String, sysId As String, internalSubset As String, baseURI As String, xmlLang As String, xmlSpace As XmlSpace, enc As Encoding)

パラメーター

nt
XmlNameTable

文字列を最小単位に分割するために使用する XmlNameTable。 このパラメーターが null の場合は、nsMgr を構築するために使用される名前テーブルが代わりに使用されます。 最小単位に分割された文字列の詳細については、XmlNameTable のトピックを参照してください。

nsMgr
XmlNamespaceManager

名前空間情報を検索するために使用する XmlNamespaceManager。または null

docTypeName
String

ドキュメント型宣言の名前。

pubId
String

パブリック識別子。

sysId
String

システム識別子。

internalSubset
String

内部 DTD サブセット。 DTD はエンティティ解決に使用され、ドキュメント検証には使用されません。

baseURI
String

XML フラグメントのベース URI (フラグメントの読み込み元の場所)。

xmlLang
String

xml:lang スコープ。

xmlSpace
XmlSpace

xml:space スコープを示す XmlSpace 値。

enc
Encoding

エンコーディングの設定を示す Encoding オブジェクト。

例外

nt が、nsMgr を構築するために使用される XmlNameTable と異なります。

適用対象