共用方式為


ModelStateDictionary.Remove 方法

定義

移除字典中的元素。

多載

Remove(KeyValuePair<String,ModelState>)

從模型狀態字典中移除第一次出現的指定的項目。

Remove(String)

從字典移除有指定之索引鍵的項目。

Remove(KeyValuePair<String,ModelState>)

從模型狀態字典中移除第一次出現的指定的項目。

public:
 virtual bool Remove(System::Collections::Generic::KeyValuePair<System::String ^, System::Web::ModelBinding::ModelState ^> item);
public bool Remove (System.Collections.Generic.KeyValuePair<string,System.Web.ModelBinding.ModelState> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, System.Web.ModelBinding.ModelState> -> bool
Public Function Remove (item As KeyValuePair(Of String, ModelState)) As Boolean

參數

item
KeyValuePair<String,ModelState>

要移除的項目。

傳回

Boolean

如果已成功從字典移除項目,則為 true,如果沒有移除項目,或在字典中找不到,則為 false

實作

適用於

Remove(String)

從字典移除有指定之索引鍵的項目。

public:
 virtual bool Remove(System::String ^ key);
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

要移除的項目索引鍵。

傳回

Boolean

如果已成功從字典移除項目,則為 true,如果沒有移除項目,或在字典中找不到,則為 false

實作

適用於