SecurityElement.Attribute(String) 方法
本文內容
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
依名稱尋找 XML 項目中的屬性。
public:
System::String ^ Attribute(System::String ^ name);
public string? Attribute(string name);
public string Attribute(string name);
member this.Attribute : string -> string
Public Function Attribute (name As String) As String
- name
- String
要搜尋的屬性名稱。
與具名屬性相關的數值,或如果具有 name
的屬性不存在,則為 null
。
name
參數為 null
。
下列程式代碼示範如何使用 Attribute 方法來依名稱尋找屬性。 此程式代碼範例是針對 類別提供的較大範例的 SecurityElement 一部分。
String^ xmlCreationDate = xmlElement->Attribute(L"creationdate");
string xmlCreationDate = xmlElement.Attribute("creationdate");
Dim xmlCreationDate As String = xmlElement.Attribute("creationdate")
使用 XML, Attribute("B")
會傳回 「456」。。
<thetag A="123" B="456" C="789">text</thetag>
產品 | 版本 |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |