HttpResponseMessageProperty Class
Provides access to the HTTP response in order to access and respond to the additional information made available for requests over the HTTP protocol.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
The HttpResponseMessageProperty type exposes the following members.
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | HttpResponseMessageProperty | Initializes a new instance of the HttpResponseMessageProperty class. |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | Headers | Gets the HTTP headers from the HTTP response. |
![]() ![]() ![]() ![]() | Name | Gets the name of the message property associated with the HttpResponseMessageProperty class. |
![]() ![]() ![]() | StatusCode | Gets or sets the status code of the current HTTP response to which this property is attached. |
![]() ![]() ![]() | StatusDescription | Gets or sets the description of the status code of the current HTTP response to which this property is attached. |
![]() | SuppressEntityBody | Gets or sets a value that indicates whether the body of the message is ignored and an empty message is sent. |
![]() | SuppressPreamble | Gets or sets whether the message preamble is suppressed. |
| Name | Description | |
|---|---|---|
![]() ![]() ![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (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.) |
![]() ![]() ![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
This is a general-purpose class that gives you direct access to the HTTP response information, which could be used for encapsulation of HTTP-specific information. One use of this class is to support services implemented in accordance with the Representational State Transfer (REST) architecture.
This class enables you to support the following scenarios:
Controls whether an entity body is transmitted.
Allows HTTP header (key, value) pairs to be set for each response.
Varies the status code and status description used for each response.
This class can be used by HttpTransportBindingElement and related classes.
This shows how to use create an instance of the HttpResponseProperty class and modify some of its members:
HttpResponseMessageProperty responseProperty = new HttpResponseMessageProperty(); responseProperty.StatusCode = HttpStatusCode.OK; responseProperty.Headers.Add( HttpResponseHeader.ContentType, "text/html; charset=UTF-8");
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


