SimpleModelBinderProvider.GetBinder Method

Returns a model binder by using the specified execution context and binding context.

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

Syntax

'Declaration
Public Overrides Function GetBinder ( _
    configuration As HttpConfiguration, _
    modelType As Type _
) As IModelBinder
'Usage
Dim instance As SimpleModelBinderProvider 
Dim configuration As HttpConfiguration 
Dim modelType As Type 
Dim returnValue As IModelBinder 

returnValue = instance.GetBinder(configuration, _
    modelType)
public override IModelBinder GetBinder(
    HttpConfiguration configuration,
    Type modelType
)
public:
virtual IModelBinder^ GetBinder(
    HttpConfiguration^ configuration, 
    Type^ modelType
) override
abstract GetBinder : 
        configuration:HttpConfiguration * 
        modelType:Type -> IModelBinder  
override GetBinder : 
        configuration:HttpConfiguration * 
        modelType:Type -> IModelBinder
public override function GetBinder(
    configuration : HttpConfiguration, 
    modelType : Type
) : IModelBinder

Parameters

Return Value

Type: System.Web.Http.ModelBinding.IModelBinder
The model binder, or null if the attempt to get a model binder is unsuccessful.

See Also

Reference

SimpleModelBinderProvider Class

System.Web.Http.ModelBinding.Binders Namespace