ModelBinderErrorMessageProvider Delegate

 

Provides a container for model-binder error message provider.

Namespace:   System.Web.Http.ModelBinding
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public delegate string ModelBinderErrorMessageProvider(
    HttpActionContext actionContext,
    ModelMetadata modelMetadata,
    object incomingValue
)
public delegate String^ ModelBinderErrorMessageProvider(
    HttpActionContext^ actionContext,
    ModelMetadata^ modelMetadata,
    Object^ incomingValue
)
type ModelBinderErrorMessageProvider = 
    delegate of 
        actionContext:HttpActionContext *
        modelMetadata:ModelMetadata *
        incomingValue:Object -> string
Public Delegate Function ModelBinderErrorMessageProvider (
    actionContext As HttpActionContext,
    modelMetadata As ModelMetadata,
    incomingValue As Object
) As String

Parameters

Return Value

Type: System.String

See Also

System.Web.Http.ModelBinding Namespace

Return to top