HttpListenerResponse Class
Represents a response to a request being handled by an HttpListener object.
Assembly: System (in System.dll)
| Name | Description | |
|---|---|---|
![]() | ContentEncoding | Gets or sets the Encoding for this response's OutputStream. |
![]() | ContentLength64 | Gets or sets the number of bytes in the body data included in the response. |
![]() | ContentType | Gets or sets the MIME type of the content returned. |
![]() | Cookies | Gets or sets the collection of cookies returned with the response. |
![]() | Headers | Gets or sets the collection of header name/value pairs returned by the server. |
![]() | KeepAlive | Gets or sets a value indicating whether the server requests a persistent connection. |
![]() | OutputStream | Gets a Stream object to which a response can be written. |
![]() | ProtocolVersion | Gets or sets the HTTP version used for the response. |
![]() | RedirectLocation | Gets or sets the value of the HTTP Location header in this response. |
![]() | SendChunked | Gets or sets whether the response uses chunked transfer encoding. |
![]() | StatusCode | Gets or sets the HTTP status code to be returned to the client. |
![]() | StatusDescription | Gets or sets a text description of the HTTP status code returned to the client. |
| Name | Description | |
|---|---|---|
![]() | Abort() | Closes the connection to the client without sending a response. |
![]() | AddHeader(String^, String^) | Adds the specified header and value to the HTTP headers for this response. |
![]() | AppendCookie(Cookie^) | Adds the specified Cookie to the collection of cookies for this response. |
![]() | AppendHeader(String^, String^) | Appends a value to the specified HTTP header to be sent with this response. |
![]() | Close() | Sends the response to the client and releases the resources held by this HttpListenerResponse instance. |
![]() | Close(array<Byte>^, Boolean) | Returns the specified byte array to the client and releases the resources held by this HttpListenerResponse instance. |
![]() | CopyFrom(HttpListenerResponse^) | Copies properties from the specified HttpListenerResponse to this response. |
![]() | 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() | |
![]() | Redirect(String^) | Configures the response to redirect the client to the specified URL. |
![]() | SetCookie(Cookie^) | Adds or updates a Cookie in the collection of cookies sent with this response. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IDisposable::Dispose() | This API supports the product infrastructure and is not intended to be used directly from your code. Releases all resources used by the HttpListenerResponse. |
When a client makes a request for a resource handled by an HttpListener object, the request and response are made available to your application in an HttpListenerContext object. The request is represented by an HttpListenerRequest object and is available in the HttpListenerContext::Request property. The response is represented by an HttpListenerResponse object and is available in the HttpListenerContext::Response property.
You can customize the response by setting various properties, such as StatusCode, StatusDescription, and Cookies. Use the HttpListenerResponse::OutputStream property to obtain a Stream instance to which response data can be written. Finally, send the response data to the client by calling the Close method.
The following code example demonstrates responding to a client request.
// 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(); }
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



