ModelStateDictionary.AddModelError Method

Definition

Overloads

AddModelError(String, Exception)

Adds the specified model error to the errors collection for the model-state dictionary that is associated with the specified key.

AddModelError(String, String)

Adds the specified error message to the errors collection for the model-state dictionary that is associated with the specified key.

AddModelError(String, Exception)

Adds the specified model error to the errors collection for the model-state dictionary that is associated with the specified key.

public void AddModelError (string key, Exception exception);
member this.AddModelError : string * Exception -> unit
Public Sub AddModelError (key As String, exception As Exception)

Parameters

key
String

The key.

exception
Exception

The exception.

Applies to

AddModelError(String, String)

Adds the specified error message to the errors collection for the model-state dictionary that is associated with the specified key.

public void AddModelError (string key, string errorMessage);
member this.AddModelError : string * string -> unit
Public Sub AddModelError (key As String, errorMessage As String)

Parameters

key
String

The key.

errorMessage
String

The error message.

Applies to