HttpListenerResponse Class

Definition

Represents a response to a request being handled by an HttpListener object.

public ref class HttpListenerResponse sealed : IDisposable
public sealed class HttpListenerResponse : IDisposable
type HttpListenerResponse = class
    interface IDisposable
Public NotInheritable Class HttpListenerResponse
Implements IDisposable
Inheritance
HttpListenerResponse
Implements

Remarks

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.

Properties

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.

Methods

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

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
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)

Explicit Interface Implementations

IDisposable.Dispose()

Releases all resources used by the HttpListenerResponse.

Applies to

See also