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
Public methodSupported by Silverlight for Windows Phone HttpRequestMessageProperty Initializes a new instance of the HttpRequestMessageProperty class.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows Phone Headers Gets the HTTP headers from the HTTP request.
Public propertySupported by Silverlight for Windows Phone Method Gets or sets the HTTP verb for the HTTP request.
Public propertyStatic memberSupported by Silverlight for Windows Phone Name Gets the name of the message property associated with the HttpRequestMessageProperty class.
Public propertySupported by Silverlight for Windows Phone QueryString Gets or sets the query string for the HTTP request.
Public propertySupported by Silverlight for Windows Phone 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
Public methodSupported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone 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.)
Public methodSupported by Silverlight for Windows Phone GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone GetType Gets the Type of the current instance. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone 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:

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.