共用方式為


XmlValidatingReader.GetAttribute 方法

定義

取得屬性值。

多載

GetAttribute(Int32)

取得具有指定索引的屬性值。

GetAttribute(String)

取得具有指定名稱的屬性值。

GetAttribute(String, String)

針對具有指定的區域名稱和命名空間「統一資源識別元 (URI)」的屬性,取得其值。

GetAttribute(Int32)

來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs

取得具有指定索引的屬性值。

public:
 override System::String ^ GetAttribute(int i);
public override string GetAttribute (int i);
override this.GetAttribute : int -> string
Public Overrides Function GetAttribute (i As Integer) As String

參數

i
Int32

屬性的索引。 此索引是以零為起始。 (第一個屬性的索引為 0。)

傳回

指定的屬性值。

例外狀況

i 參數小於 0,或大於或等於 AttributeCount

備註

這個方法不會移動讀取器。

注意

類別 XmlValidatingReader 在 .NET Framework 2.0 中已過時。 您可以使用 類別和 Create 方法建立驗證 XmlReader 實例 XmlReaderSettings 。 如需詳細資訊,請參閱 XmlReader 參考頁面的<備註>一節。

另請參閱

適用於

GetAttribute(String)

來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs

取得具有指定名稱的屬性值。

public:
 override System::String ^ GetAttribute(System::String ^ name);
public override string? GetAttribute (string name);
public override string GetAttribute (string name);
override this.GetAttribute : string -> string
Public Overrides Function GetAttribute (name As String) As String

參數

name
String

屬性的限定名稱 (Qualified Name)。

傳回

指定的屬性值。 如果找不到屬性,會傳回 null

範例

下列範例會取得 ISBN 屬性的值。

#using <System.Xml.dll>

using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
   
   //Create the validating reader.
   XmlTextReader^ txtreader = gcnew XmlTextReader( "attrs.xml" );
   XmlValidatingReader^ reader = gcnew XmlValidatingReader( txtreader );
   
   //Read the ISBN attribute.
   reader->MoveToContent();
   String^ isbn = reader->GetAttribute( "ISBN" );
   Console::WriteLine( "The ISBN value: {0}", isbn );
   
   //Close the reader.
   reader->Close();
}

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

public class Sample
{
  public static void Main()
  {

    //Create the validating reader.
    XmlTextReader txtreader = new XmlTextReader("attrs.xml");
    XmlValidatingReader reader = new XmlValidatingReader(txtreader);

    //Read the ISBN attribute.
    reader.MoveToContent();
    string isbn = reader.GetAttribute("ISBN");
    Console.WriteLine("The ISBN value: " + isbn);

    //Close the reader.
    reader.Close();
  }
} // End class
Imports System.IO
Imports System.Xml

public class Sample 

  public shared sub Main()

    'Create the validating reader.
    Dim txtreader as XmlTextReader = new XmlTextReader("attrs.xml")
    Dim reader as XmlValidatingReader = new XmlValidatingReader(txtreader)

    'Read the ISBN attribute.
    reader.MoveToContent()
    Dim isbn as string = reader.GetAttribute("ISBN")
    Console.WriteLine("The ISBN value: " + isbn)

    'Close the reader.
    reader.Close()

  End sub
End class 

此範例會使用 檔案 attrs.xml ,作為輸入。

<book genre='novel' ISBN='1-861003-78' pubdate='1987'>
</book>

備註

注意

類別 XmlValidatingReader 在 .NET Framework 2.0 中已過時。 您可以使用 類別和 Create 方法建立驗證 XmlReader 實例 XmlReaderSettings 。 如需詳細資訊,請參閱 XmlReader 參考頁面的<備註>一節。

這個方法不會移動讀取器。

如果讀取器位於 DocumentType 節點上,則這個方法可用來取得 PUBLIC 和 SYSTEM 常值,例如 reader.GetAttribute("PUBLIC")

另請參閱

適用於

GetAttribute(String, String)

來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs
來源:
XmlValidatingReader.cs

針對具有指定的區域名稱和命名空間「統一資源識別元 (URI)」的屬性,取得其值。

public:
 override System::String ^ GetAttribute(System::String ^ localName, System::String ^ namespaceURI);
public override string? GetAttribute (string localName, string? namespaceURI);
public override string GetAttribute (string localName, string namespaceURI);
override this.GetAttribute : string * string -> string
Public Overrides Function GetAttribute (localName As String, namespaceURI As String) As String

參數

localName
String

屬性的本機名稱。

namespaceURI
String

屬性的命名空間 URI。

傳回

指定的屬性值。 如果找不到屬性,會傳回 null。 這個方法不會移動讀取器。

備註

注意

類別 XmlValidatingReader 在 .NET Framework 2.0 中已過時。 您可以使用 類別和 Create 方法建立驗證 XmlReader 實例 XmlReaderSettings 。 如需詳細資訊,請參閱 XmlReader 參考頁面的<備註>一節。

下列 XML 包含特定命名空間中的屬性:

<test xmlns:dt="urn:datatypes" dt:type="int"/>  

您可以使用一個引數 (前置詞和區功能變數名稱稱) 或兩個引數來查閱 dt:type 屬性, (本機名稱和命名空間 URI) :

String dt = reader.GetAttribute("dt:type");  
String dt2 = reader.GetAttribute("type","urn:datatypes");  

若要查閱 xmlns:dt 屬性,請使用下列其中一個引數:

String dt3 = reader.GetAttribute("xmlns:dt");  
String dt4 = reader.GetAttribute("dt",http://www.w3.org/2000/xmlns/);  

您也可以使用 Prefix 屬性來取得這項資訊。

另請參閱

適用於