This documentation is archived and is not being maintained.
HttpRuntimeSection::EncoderType Property
Visual Studio 2010
Gets or sets the name of a custom type that can be used to handle HTML and URL encoding.
Assembly: System.Web (in System.Web.dll)
[StringValidatorAttribute(MinLength = )] [ConfigurationPropertyAttribute(L"encoderType", DefaultValue = L"System.Web.Util.HttpEncoder")] public: property String^ EncoderType { String^ get (); void set (String^ value); }
Property Value
Type: System::StringThe name of a type that can be used to handle HTML and URL encoding.
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).
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: