HttpRuntimeSection.EncoderType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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).