HttpRuntimeSection.EncoderType Property

Definition

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

public:
 property System::String ^ EncoderType { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("encoderType", DefaultValue="System.Web.Util.HttpEncoder")]
[System.Configuration.StringValidator(MinLength=1)]
public string EncoderType { get; set; }
[<System.Configuration.ConfigurationProperty("encoderType", DefaultValue="System.Web.Util.HttpEncoder")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.EncoderType : string with get, set
Public Property EncoderType As String

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