HttpServerUtilityBase Class

Definition

Serves as the base class for classes that provide helper methods for processing Web requests.

public ref class HttpServerUtilityBase abstract
public abstract class HttpServerUtilityBase
type HttpServerUtilityBase = class
Public MustInherit Class HttpServerUtilityBase
Inheritance
HttpServerUtilityBase
Derived

Remarks

The HttpServerUtilityBase class is an abstract class that contains the same members as the HttpServerUtility class. The HttpServerUtilityBase class enables you to create derived classes that are like the HttpServerUtility class, but that you can customize and that work outside the ASP.NET pipeline. When you perform unit testing, you typically use a derived class to implement members with customized behavior that fulfills the scenario you are testing.

The HttpServerUtilityWrapper class derives from the HttpServerUtilityBase class. The HttpServerUtilityWrapper class serves as a wrapper for the HttpServerUtility class. At run time, you typically use an instance of the HttpServerUtilityWrapper class to call members of the HttpServerUtility object.

Constructors

HttpServerUtilityBase()

Initializes the class for use by an inherited class instance. This constructor can only be called by an inherited class.

Properties

MachineName

When overridden in a derived class, gets the server's computer name.

ScriptTimeout

When overridden in a derived class, gets or sets the request time-out value in seconds.

Methods

ClearError()

When overridden in a derived class, clears the most recent exception.

CreateObject(String)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's programmatic identifier (ProgID).

CreateObject(Type)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's type.

CreateObjectFromClsid(String)

When overridden in a derived class, creates a server instance of a COM object that is identified by the object's class identifier (CLSID).

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Execute(IHttpHandler, TextWriter, Boolean)

When overridden in a derived class, executes the specified handler in the context of the current process, using a TextWriter instance to capture output from the executed handler and a value that specifies whether to clear the QueryString and Form collections.

Execute(String)

When overridden in a derived class, executes the handler for the specified virtual path in the context of the current process.

Execute(String, Boolean)

When overridden in a derived class, executes the handler for the specified virtual path in the context of the current process and specifies whether to clear the QueryString and Form collections.

Execute(String, TextWriter)

When overridden in a derived class, executes the handler for the specified virtual path in the context of the current process, using a TextWriter instance to capture output from the executed handler.

Execute(String, TextWriter, Boolean)

When overridden in a derived class, executes the handler for the specified virtual path in the context of the current request, using a TextWriter instance to capture output from the page and a value that indicates whether to clear the QueryString and Form collections.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetLastError()

When overridden in a derived class, returns the most recent exception.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
HtmlDecode(String)

When overridden in a derived class, decodes an HTML-encoded string and returns the decoded string.

HtmlDecode(String, TextWriter)

When overridden in a derived class, decodes an HTML-encoded string and returns the results in a stream.

HtmlEncode(String)

When overridden in a derived class, HTML-encodes a string and returns the encoded string.

HtmlEncode(String, TextWriter)

When overridden in a derived class, HTML-encodes a string and sends the resulting output to an output stream.

MapPath(String)

When overridden in a derived class, returns the physical file path that corresponds to the specified virtual path on the Web server.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)
Transfer(IHttpHandler, Boolean)

When overridden in a derived class, terminates execution of the current process and starts execution of a new request, using a custom HTTP handler and a value that specifies whether to clear the QueryString and Form collections.

Transfer(String)

When overridden in a derived class, terminates execution of the current process and starts execution of a page or handler that is specified with a URL.

Transfer(String, Boolean)

When overridden in a derived class, terminates execution of the current page and starts execution of a different page or handler by using the specified URL and a value that specifies whether to clear the QueryString and Form collections.

TransferRequest(String)

When overridden in a derived class, asynchronously executes the end point at the specified URL.

TransferRequest(String, Boolean)

When overridden in a derived class, asynchronously executes the endpoint at the specified URL and specifies whether to clear the QueryString and Form collections.

TransferRequest(String, Boolean, String, NameValueCollection)

When overridden in a derived class, asynchronously executes the endpoint at the specified URL by using the specified HTTP method and headers.

TransferRequest(String, Boolean, String, NameValueCollection, Boolean)

When implemented in a derived class, asynchronously executes the end point at the specified URL, using the specified HTTP method, headers, path, and options to preserve form values and preserve the user identity.

UrlDecode(String)

When overridden in a derived class, decodes a URL-encoded string and returns the decoded string.

UrlDecode(String, TextWriter)

When overridden in a derived class, decodes a URL-encoded string and sends the resulting output to a stream.

UrlEncode(String)

When overridden in a derived class, URL-encodes a string and returns the encoded string.

UrlEncode(String, TextWriter)

When overridden in a derived class, URL-encodes a string and sends the resulting output to a stream.

UrlPathEncode(String)

When overridden in a derived class, URL-encodes the path section of a URL string.

UrlTokenDecode(String)

When overridden in a derived class, decodes a URL string token into an equivalent byte array by using base64-encoded digits.

UrlTokenEncode(Byte[])

When overridden in a derived class, encodes a byte array into an equivalent string representation by using base64 digits, which makes it usable for transmission on the URL.

Applies to