HttpRequestParameterBinding Class

Parameter binds to the request.

Inheritance Hierarchy

System.Object
  System.Web.Http.Controllers.HttpParameterBinding
    System.Web.Http.ModelBinding.HttpRequestParameterBinding

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

Syntax

'Declaration
Public Class HttpRequestParameterBinding _
    Inherits HttpParameterBinding
'Usage
Dim instance As HttpRequestParameterBinding
public class HttpRequestParameterBinding : HttpParameterBinding
public ref class HttpRequestParameterBinding : public HttpParameterBinding
type HttpRequestParameterBinding =  
    class 
        inherit HttpParameterBinding 
    end
public class HttpRequestParameterBinding extends HttpParameterBinding

The HttpRequestParameterBinding type exposes the following members.

Constructors

  Name Description
Public method HttpRequestParameterBinding Initializes a new instance of the HttpRequestParameterBinding class.

Top

Properties

  Name Description
Public property Descriptor Gets the HttpParameterDescriptor that was used to initialize this instance. (Inherited from HttpParameterBinding.)
Public property ErrorMessage If the binding is invalid, gets an error message that describes the binding error. (Inherited from HttpParameterBinding.)
Public property IsValid Gets a value that indicates whether the binding was successful. (Inherited from HttpParameterBinding.)
Public property WillReadBody Returns a value indicating whether this HttpParameterBinding instance will read the entity body of the HTTP message. (Inherited from HttpParameterBinding.)

Top

Methods

  Name Description
Public method Equals (Inherited from Object.)
Public method ExecuteBindingAsync Asynchronously executes parameter binding. (Overrides HttpParameterBinding.ExecuteBindingAsync(ModelMetadataProvider, HttpActionContext, CancellationToken).)
Protected method Finalize (Inherited from Object.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method GetValue Gets the parameter value from argument dictionary of the action context. (Inherited from HttpParameterBinding.)
Protected method MemberwiseClone (Inherited from Object.)
Protected method SetValue Sets the result of this parameter binding in the argument dictionary of the action context. (Inherited from HttpParameterBinding.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Http.ModelBinding Namespace