WebTestContext.Remove 方法 (String)
將有指定索引鍵的元素從 WebTestContext 移除。
命名空間: Microsoft.VisualStudio.TestTools.WebTesting
組件: Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)
語法
'宣告
Public Function Remove ( _
key As String _
) As Boolean
public bool Remove(
string key
)
public:
virtual bool Remove(
String^ key
) sealed
abstract Remove :
key:string -> bool
override Remove :
key:string -> bool
public final function Remove(
key : String
) : boolean
參數
- key
型別:System.String
要從 WebTestContext 中移除的索引鍵。
傳回值
型別:System.Boolean
如果成功移除項目,則為 true,否則為 false。如果找不到 key,它也會傳回 false。
實作
IDictionary<TKey, TValue>.Remove(TKey)
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | key 為 nullnull 參考 (即 Visual Basic 中的 Nothing)。 |
備註
如果找不到要移除的索引鍵,則基礎集合將不會有所變更。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。