ModelBinderProvider.GetBinder Method
Finds a binder for the given type.
Namespace: System.Web.Http.ModelBinding
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public MustOverride Function GetBinder ( _
configuration As HttpConfiguration, _
modelType As Type _
) As IModelBinder
'Usage
Dim instance As ModelBinderProvider
Dim configuration As HttpConfiguration
Dim modelType As Type
Dim returnValue As IModelBinder
returnValue = instance.GetBinder(configuration, _
modelType)
public abstract IModelBinder GetBinder(
HttpConfiguration configuration,
Type modelType
)
public:
virtual IModelBinder^ GetBinder(
HttpConfiguration^ configuration,
Type^ modelType
) abstract
abstract GetBinder :
configuration:HttpConfiguration *
modelType:Type -> IModelBinder
public abstract function GetBinder(
configuration : HttpConfiguration,
modelType : Type
) : IModelBinder
Parameters
configuration
Type: System.Web.Http.HttpConfigurationA configuration object.
modelType
Type: System.TypeThe type of the model to bind against.
Return Value
Type: System.Web.Http.ModelBinding.IModelBinder
A binder, which can attempt to bind this type. Or null if the binder knows statically that it will never be able to bind the type.