共用方式為


WebTestContext.Item 屬性

取得或設定與來自 WebTestContext 物件之指定索引鍵關聯的值。

命名空間:  Microsoft.VisualStudio.TestTools.WebTesting
組件:  Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)

語法

'宣告
Public Default Property Item ( _
    key As String _
) As Object
public Object this[
    string key
] { get; set; }
public:
virtual property Object^ default[String^ key] {
    Object^ get (String^ key) sealed;
    void set (String^ key, Object^ value) sealed;
}
abstract Item : 
        key:string -> Object with get, set
override Item : 
        key:string -> Object with get, set
JScript 不支援索引屬性。

參數

  • key
    型別:System.String
    對應集合中之索引鍵的字串。

屬性值

型別:System.Object
Object ,其中包含與 key 關聯的值。

實作

IDictionary<TKey, TValue>.Item

例外狀況

例外狀況 條件
KeyNotFoundException

找不到 key。

備註

環境變數或負載測試所定義的內文,將會覆寫由這個屬性所傳回的項目。因此,如果 Web 效能測試是在包含 "myContext" 內文的負載測試中執行,呼叫 MyWebTestContext.Item("myContext") 將會傳回 LoadTestContext.Item("myContext") 的值。

.NET Framework 安全性

請參閱

參考

WebTestContext 類別

Microsoft.VisualStudio.TestTools.WebTesting 命名空間