共用方式為


ModelStateDictionary.Add 方法

定義

多載

Add(KeyValuePair<String,ModelState>)

將指定的項目加入至模型狀態字典。

Add(String, ModelState)

將具有指定索引鍵和值的項目加入至模型狀態字典。

Add(KeyValuePair<String,ModelState>)

將指定的項目加入至模型狀態字典。

public void Add (System.Collections.Generic.KeyValuePair<string,System.Web.Mvc.ModelState> item);
abstract member Add : System.Collections.Generic.KeyValuePair<string, System.Web.Mvc.ModelState> -> unit
override this.Add : System.Collections.Generic.KeyValuePair<string, System.Web.Mvc.ModelState> -> unit
Public Sub Add (item As KeyValuePair(Of String, ModelState))

參數

item
KeyValuePair<String,ModelState>

要加入至模型狀態字典的物件。

實作

例外狀況

模型狀態字典為唯讀。

適用於

Add(String, ModelState)

將具有指定索引鍵和值的項目加入至模型狀態字典。

public void Add (string key, System.Web.Mvc.ModelState value);
abstract member Add : string * System.Web.Mvc.ModelState -> unit
override this.Add : string * System.Web.Mvc.ModelState -> unit
Public Sub Add (key As String, value As ModelState)

參數

key
String

要加入的項目的索引鍵。

value
ModelState

要加入的項目的值。

實作

例外狀況

模型狀態字典為唯讀。

key 為 null。

具有指定索引鍵的項目已經出現在模型狀態字典中。

適用於