ModelStateDictionary.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Remove(KeyValuePair<String,ModelState>) |
從模型狀態字典中移除第一次出現的指定的項目。 |
Remove(String) |
從模型狀態字典移除具有指定之索引鍵的項目。 |
Remove(KeyValuePair<String,ModelState>)
從模型狀態字典中移除第一次出現的指定的項目。
public bool Remove (System.Collections.Generic.KeyValuePair<string,System.Web.WebPages.Html.ModelState> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, System.Web.WebPages.Html.ModelState> -> bool
Public Function Remove (item As KeyValuePair(Of String, ModelState)) As Boolean
參數
- item
- KeyValuePair<String,ModelState>
要移除的項目。
傳回
如果已成功從模型狀態字典中移除專案,則為 true;如果專案未移除,或專案不存在於模型狀態字典中,則為 false。
實作
適用於
Remove(String)
從模型狀態字典移除具有指定之索引鍵的項目。
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean
參數
- key
- String
要移除的項目索引鍵。
傳回
如果已成功從模型狀態字典中移除專案,則為 true;false 表示專案未移除或不存在於模型狀態字典中。