This topic has not yet been rated - Rate this topic

HttpListenerRequest Class

Describes an incoming HTTP request to an HttpListener object. This class cannot be inherited.

System.Object
  System.Net.HttpListenerRequest

Namespace:  System.Net
Assembly:  System (in System.dll)
public sealed class HttpListenerRequest

The HttpListenerRequest type exposes the following members.

  Name Description
Public property AcceptTypes Gets the MIME types accepted by the client.
Public property ClientCertificateError Gets an error code that identifies a problem with the X509Certificate provided by the client.
Public property ContentEncoding Gets the content encoding that can be used with data sent with the request
Public property ContentLength64 Gets the length of the body data included in the request.
Public property ContentType Gets the MIME type of the body data included in the request.
Public property Cookies Gets the cookies sent with the request.
Public property HasEntityBody Gets a Boolean value that indicates whether the request has associated body data.
Public property Headers Gets the collection of header name/value pairs sent in the request.
Public property HttpMethod Gets the HTTP method specified by the client.
Public property InputStream Gets a stream that contains the body data sent by the client.
Public property IsAuthenticated Gets a Boolean value that indicates whether the client sending this request is authenticated.
Public property IsLocal Gets a Boolean value that indicates whether the request is sent from the local computer.
Public property IsSecureConnection Gets a Boolean value that indicates whether the TCP connection used to send the request is using the Secure Sockets Layer (SSL) protocol.
Public property KeepAlive Gets a Boolean value that indicates whether the client requests a persistent connection.
Public property LocalEndPoint Get the server IP address and port number to which the request is directed.
Public property ProtocolVersion Gets the HTTP version used by the requesting client.
Public property QueryString Gets the query string included in the request.
Public property RawUrl Gets the URL information (without the host and port) requested by the client.
Public property RemoteEndPoint Gets the client IP address and port number from which the request originated.
Public property RequestTraceIdentifier Gets the request identifier of the incoming HTTP request.
Public property ServiceName Gets the Service Provider Name (SPN) that the client sent on the request.
Public property TransportContext Gets the TransportContext for the client request.
Public property Url Gets the Uri object requested by the client.
Public property UrlReferrer Gets the Uniform Resource Identifier (URI) of the resource that referred the client to the server.
Public property UserAgent Gets the user agent presented by the client.
Public property UserHostAddress Gets the server IP address and port number to which the request is directed.
Public property UserHostName Gets the DNS name and, if provided, the port number specified by the client.
Public property UserLanguages Gets the natural languages that are preferred for the response.
Top
  Name Description
Public method BeginGetClientCertificate Begins an asynchronous request for the client's X.509 v.3 certificate.
Public method EndGetClientCertificate Ends an asynchronous request for the client's X.509 v.3 certificate.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetClientCertificate Retrieves the client's X.509 v.3 certificate.
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

When a client makes a request to a Uniform Resource Identifier (URI) handled by an HttpListener object, the HttpListener provides a HttpListenerContext object that contains information about the sender, the request, and the response that is sent to the client. The HttpListenerContext.Request property returns the HttpListenerRequest object that describes the request.

The HttpListenerRequest object contains information about the request, such as the request HttpMethod string, UserAgent string, and request body data (see the InputStream property).

To reply to the request, you must get the associated response using the Response property.

The following code example demonstrates how to receive and respond to a HttpListenerRequest.


// This example requires the System and System.Net namespaces.
public static void SimpleListenerExample(string[] prefixes)
{
    if (!HttpListener.IsSupported)
    {
        Console.WriteLine ("Windows XP SP2 or Server 2003 is required to use the HttpListener class.");
        return;
    }
    // URI prefixes are required,
    // for example "http://contoso.com:8080/index/".
    if (prefixes == null || prefixes.Length == 0)
      throw new ArgumentException("prefixes");

    // Create a listener.
    HttpListener listener = new HttpListener();
    // Add the prefixes.
    foreach (string s in prefixes)
    {
        listener.Prefixes.Add(s);
    }
    listener.Start();
    Console.WriteLine("Listening...");
    // Note: The GetContext method blocks while waiting for a request. 
    HttpListenerContext context = listener.GetContext();
    HttpListenerRequest request = context.Request;
    // Obtain a response object.
    HttpListenerResponse response = context.Response;
    // Construct a response.
    string responseString = "<HTML><BODY> Hello world!</BODY></HTML>";
    byte[] buffer = System.Text.Encoding.UTF8.GetBytes(responseString);
    // Get a response stream and write the response to it.
    response.ContentLength64 = buffer.Length;
    System.IO.Stream output = response.OutputStream;
    output.Write(buffer,0,buffer.Length);
    // You must close the output stream.
    output.Close();
    listener.Stop();
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ