HttpRequestMessageProperty Class
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Provides access to the HTTP request to access and respond to the additional information that is made available for requests over the HTTP protocol.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The HttpRequestMessageProperty type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | HttpRequestMessageProperty | Initializes a new instance of the HttpRequestMessageProperty class. |
| Name | Description | |
|---|---|---|
![]() | Headers | Gets the HTTP headers from the HTTP request. |
![]() | Method | Gets or sets the HTTP verb for the HTTP request. |
![]() ![]() | Name | Gets the name of the message property associated with the HttpRequestMessageProperty class. |
![]() | QueryString | Gets or sets the query string for the HTTP request. |
![]() | SuppressEntityBody | Gets or sets a value that indicates whether the body of the message is ignored and only the headers are sent. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
This is a general-purpose class that gives the developer direct access to the HTTP request information, which can be used for encapsulating HTTP-specific information. One example of the use of this class is to support services that are implemented in accordance with the Representational State Transfer (REST) architecture.
This class enables support for the following scenarios:
Varies the HTTP verb used for each request.
Allows HTTP header (key, value) pairs to be set and queried by request.
Allows the query string to be specified for an HTTP request.
This class can be used by HttpTransportBindingElement and related classes.
For incoming messages, this property is added to messages.
For outgoing messages, this property causes the following to happen:
QueryString is appended to the RequestUri.
Headers is added to the set of HTTP headers to be transmitted.



