XmlTextReader.GetAttribute 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取属性的值。
重载
GetAttribute(Int32) |
获取具有指定索引的属性的值。 |
GetAttribute(String) |
获取具有指定名称的属性的值。 |
GetAttribute(String, String) |
获取具有指定本地名称和命名空间 URI 的属性的值。 |
注解
备注
从 .NET Framework 2.0 开始,建议使用 XmlReader.Create 方法创建XmlReader实例,以利用新功能。
GetAttribute(Int32)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.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。
注解
注意
从 .NET Framework 2.0 开始,建议使用 XmlReader.Create 方法创建XmlReader实例,以利用新功能。
此方法不移动读取器。
另请参阅
适用于
GetAttribute(String)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.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
属性的限定名称。
返回
指定的属性的值。 如果未找到该属性,则返回 null
。
示例
以下示例获取 ISBN 属性的值。
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlTextReader^ reader = nullptr;
try
{
//Load the reader with the XML file.
reader = gcnew XmlTextReader( "attrs.xml" );
//Read the ISBN attribute.
reader->MoveToContent();
String^ isbn = reader->GetAttribute( "ISBN" );
Console::WriteLine( "The ISBN value: {0}", isbn );
}
finally
{
if ( reader != nullptr )
reader->Close();
}
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlTextReader reader = null;
try
{
//Load the reader with the XML file.
reader = new XmlTextReader("attrs.xml");
//Read the ISBN attribute.
reader.MoveToContent();
string isbn = reader.GetAttribute("ISBN");
Console.WriteLine("The ISBN value: " + isbn);
}
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
'Load the reader with the XML file.
reader = New XmlTextReader("attrs.xml")
'Read the ISBN attribute.
reader.MoveToContent()
Dim isbn As String = reader.GetAttribute("ISBN")
Console.WriteLine("The ISBN value: " & isbn)
Finally
If Not (reader Is Nothing) Then
reader.Close()
End If
End Try
End Sub
End Class
该示例使用 文件 attrs.xml
作为输入。
<book genre='novel' ISBN='1-861003-78' pubdate='1987'>
</book>
注解
注意
从 .NET Framework 2.0 开始,建议使用 XmlReader.Create 方法创建XmlReader实例,以利用新功能。
此方法不移动读取器。
如果读取器位于节点上 DocumentType
,则此方法可用于获取 PUBLIC 和 SYSTEM 文本,例如, reader.GetAttribute("PUBLIC")
另请参阅
适用于
GetAttribute(String, String)
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.cs
- Source:
- XmlTextReader.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
。 此方法不移动读取器。
注解
备注
从 .NET Framework 2.0 开始,建议使用 XmlReader.Create 方法创建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 属性获取此信息。