HttpRequestMessageProperty Class

Definition

Provides access to the HTTP request to access and respond to the additional information made available for requests over the HTTP protocol.

C#
public sealed class HttpRequestMessageProperty : System.ServiceModel.Channels.IMessageProperty
C#
public sealed class HttpRequestMessageProperty : System.ServiceModel.Channels.IMergeEnabledMessageProperty, System.ServiceModel.Channels.IMessageProperty
C#
public sealed class HttpRequestMessageProperty
Inheritance
HttpRequestMessageProperty
Implements
IMessageProperty System.ServiceModel.Channels.IMergeEnabledMessageProperty

Examples

The following code shows how to set several of the properties in an instance of this class and incorporate the instance into a message.

C#
static Message BuildMessage()
{
    Message messageToSend = null;
    HttpRequestMessageProperty reqProps = new HttpRequestMessageProperty();
    reqProps.SuppressEntityBody = false;
    reqProps.Headers.Add("CustomHeader", "Test Value");
    reqProps.Headers.Add(HttpRequestHeader.UserAgent, "my user agent");

    try
    {
        messageToSend = Message.CreateMessage(MessageVersion.Soap11, "http://tempuri.org/IUntypedService/ProcessMessage", "Hello WCF");
    }
    catch (Exception e)
    {
        Console.WriteLine("got exception when sending message: " + e.ToString());
    }

    messageToSend.Properties[HttpRequestMessageProperty.Name] = reqProps;
    return messageToSend;
}

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 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:

Constructors

HttpRequestMessageProperty()

Initializes a new instance of the HttpRequestMessageProperty class.

Properties

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.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(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)

Explicit Interface Implementations

Applies to

Produkt Verzie
.NET Core 1.0, Core 1.1, 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
UWP 10.0