HttpRuntimeSection.EncoderType Property

Definition

Gets or sets the name of a custom type that can be used to handle HTML and URL encoding.

C#
[System.Configuration.ConfigurationProperty("encoderType", DefaultValue="System.Web.Util.HttpEncoder")]
[System.Configuration.StringValidator(MinLength=1)]
public string EncoderType { get; set; }

Property Value

The name of a type that can be used to handle HTML and URL encoding.

Attributes

Remarks

ASP.NET uses the HttpEncoder type as the default handler for HTML and URL encoding tasks.

To customize encoding behavior, you can create a class that inherits from the HttpEncoder type. In the configuration file for an application, you then set the EncoderType attribute of the httpRuntime element to the fully qualified string name of the custom type. For more information, see httpRuntime Element (ASP.NET Settings Schema).

Applies to

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1