HttpEncoder Class
Provides encoding and decoding logic.
Assembly: System.Web (in System.Web.dll)
The HttpEncoder type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | HeaderNameValueEncode | Encodes a header name and value into a string that can be used as an HTTP header. |
![]() | HtmlAttributeEncode | Encodes an incoming value into a string that can be inserted into an HTML attribute that is delimited by using single or double quotation marks. |
![]() | HtmlDecode | Decodes a value from an HTML-encoded string. |
![]() | HtmlEncode | Encodes a string into an HTML-encoded string. |
![]() | JavaScriptStringEncode | Encodes a string. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | UrlEncode | Encodes an array of characters that are not allowed in a URL into a hexadecimal character-entity equivalent. |
![]() | UrlPathEncode | Encodes a subsection of a URL. |
The class contains encoding and decoding logic that is used by methods in classes such as HttpUtility, HttpServerUtility, and HttpResponseHeader.
You can inherit from the HttpEncoder class and override its behavior to customize the default encoding and decoding behavior of ASP.NET. You then set the EncoderType property of the HttpRuntimeSection class to configure your custom class.
A custom class for encoding and decoding that derives from HttpEncoder can override the built-in ASP.NET encoding and decoding behavior or change only selected aspects of it.
You can configure the custom encoding type for in ASP.NET to replace or supplement the following encoding behavior:
HTML encoding
HTML attribute encoding
URL encoding
URL path encoding
HTTP header name and header value encoding
By default, ASP.NET applications are configured to use the AntiXssEncoder type for all output encoding.
The following example from an application-level Web.config file shows how the AntiXssEncoder type is set for an ASP.NET application:
<httpRuntime requestValidationMode="4.5" encoderType="System.Web.Security.AntiXss.AntiXssEncoder, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
The configuration setting in the example sets the AntiXssEncoder class to perform all output encoding in the application. For more information, see the AntiXssEncoder class overview.
Notes to InheritorsWhen you create a custom encoder class and override the base methods of the base class, the derived encoder might throw an exception from any of the overridden methods. However, in the following cases throwing such an exception could lead to unexpected behavior in ASP.NET:
If ASP.NET is rendering an error page that is caused by an unhandled exception that was thrown from a custom encoder, ASP.NET does not attempt to encode its error output by calling into the custom encoder. This avoids recursive error conditions.
When ASP.NET is sending HTTP headers to IIS, ASP.NET has no provision for unhandled exceptions. Therefore, the standard ASP.NET error page will be rendered (if configuration settings allows this page to be displayed).
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
