HttpRequestMessageProperty Class
TOC
Collapse the table of content
Expand the table of content

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.

System::Object
  System.ServiceModel.Channels::HttpRequestMessageProperty

Namespace:  System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

No code example is currently available or this language may not be supported.

The HttpRequestMessageProperty type exposes the following members.

  NameDescription
Public methodHttpRequestMessagePropertyInitializes a new instance of the HttpRequestMessageProperty class.
Top

  NameDescription
Public propertyHeadersGets the HTTP headers from the HTTP request.
Public propertyMethodGets or sets the HTTP verb for the HTTP request.
Public propertyStatic memberNameGets the name of the message property associated with the HttpRequestMessageProperty class.
Public propertyQueryStringGets or sets the query string for the HTTP request.
Public propertySuppressEntityBodyGets or sets a value that indicates whether the body of the message is ignored and only the headers are sent.
Top

  NameDescription
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

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:

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft