XmlValidatingReader.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Item[Int32] |
取得具有指定索引的屬性值。 |
Item[String] |
取得具有指定名稱的屬性值。 |
Item[String, String] |
取得具有指定的區域名稱和命名空間 URI 的屬性值。 |
Item[Int32]
Item[String]
取得具有指定名稱的屬性值。
public:
virtual property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ name); };
public override string this[string name] { get; }
member this.Item(string) : string
Default Public Overrides ReadOnly Property Item(name As String) As String
參數
- name
- String
屬性的限定名稱 (Qualified Name)。
屬性值
指定的屬性值。 如果找不到屬性,則傳 null
回 。
備註
此屬性不會移動讀取器。
如果讀取器位於 DocumentType
節點上,這個方法可用來取得 PUBLIC 和 SYSTEM 常值,例如 reader["PUBLIC"]
。
適用於
Item[String, String]
取得具有指定的區域名稱和命名空間 URI 的屬性值。
public:
virtual property System::String ^ default[System::String ^, System::String ^] { System::String ^ get(System::String ^ name, System::String ^ namespaceURI); };
public override string this[string name, string namespaceURI] { get; }
member this.Item(string * string) : string
Default Public Overrides ReadOnly Property Item(name As String, namespaceURI As String) As String
參數
- name
- String
屬性的本機名稱。
- namespaceURI
- String
屬性的命名空間 URI。
屬性值
指定的屬性值。 如果找不到屬性,則傳 null
回 。
備註
此屬性不會移動讀取器。