ModelBinderErrorMessageProvider 委托

定义

表示方法,其可提供模型绑定错误消息。

public delegate System::String ^ ModelBinderErrorMessageProvider(ModelBindingExecutionContext ^ modelBindingExecutionContext, ModelMetadata ^ modelMetadata, System::Object ^ incomingValue);
public delegate string ModelBinderErrorMessageProvider(ModelBindingExecutionContext modelBindingExecutionContext, ModelMetadata modelMetadata, object incomingValue);
type ModelBinderErrorMessageProvider = delegate of ModelBindingExecutionContext * ModelMetadata * obj -> string
Public Delegate Function ModelBinderErrorMessageProvider(modelBindingExecutionContext As ModelBindingExecutionContext, modelMetadata As ModelMetadata, incomingValue As Object) As String 

参数

modelBindingExecutionContext
ModelBindingExecutionContext

模型绑定器执行上下文。 如果模型绑定的执行上下文是 null,则声称一个新的模型绑定上下文并将其返回。

modelMetadata
ModelMetadata

模型元数据。

incomingValue
Object

传入值。

返回值

String

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于