HttpRequestMessageProperty Class
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Provides access to the HTTP request to access and respond to the additional information that is made available for requests over the HTTP protocol.
Inheritance Hierarchy
System.Object
System.ServiceModel.Channels.HttpRequestMessageProperty
Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Public NotInheritable Class HttpRequestMessageProperty
public sealed class HttpRequestMessageProperty
The HttpRequestMessageProperty type exposes the following members.
Constructors
Name | Description | |
---|---|---|
HttpRequestMessageProperty | Initializes a new instance of the HttpRequestMessageProperty class. |
Top
Properties
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. |
Top
Methods
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.) |
Top
Remarks
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:
Method is set to Method.
QueryString is appended to the RequestUri.
Headers is added to the set of HTTP headers to be transmitted.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
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.