ExtractAttributeValue.TagName 屬性
取得或設定其中包含要擷取之屬性的標記名稱。
命名空間: Microsoft.VisualStudio.TestTools.WebTesting.Rules
組件: Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)
語法
'宣告
Public Property TagName As String
public string TagName { get; set; }
public:
property String^ TagName {
String^ get ();
void set (String^ value);
}
member TagName : string with get, set
function get TagName () : String
function set TagName (value : String)
屬性值
型別:System.String
包含要擷取之屬性值的標記名稱。
備註
這是用來識別其中包含您想要擷取之屬性值的標記。假設有下列 HTML:
<input name="MyTextBox" type="text" id="TextBox1" />
<input type="submit" name="Button1" value="Button" id="Button1" />
如果您想要擷取 id 屬性 (Attribute) 值,請將 TagName 屬性 (Property) 設定為 input 並將 AttributeName 屬性設定為 id。
這樣就會傳回 TextBox1 值,因為 TextBox1 是第一個找到之 input 標記中的 id 值。若要從第二個標記擷取 id,請參閱 MatchAttributeName 和 MatchAttributeValue。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。