HttpRuntimeSection.EncoderType 属性

定义

获取或设置可用于处理 HTML 和 URL 编码的自定义类型的名称。

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

属性值

可用于处理 HTML 和 URL 编码的类型的名称。

属性

注解

ASP.NET 使用 HttpEncoder 类型作为 HTML 和 URL 编码任务的默认处理程序。

若要自定义编码行为,可以创建从 HttpEncoder 类型继承的类。 在应用程序的配置文件中,将 元素的 httpRuntime 属性设置为EncoderType自定义类型的完全限定字符串名称。 有关详细信息,请参阅 httpRuntime 元素 (ASP.NET 设置架构)

适用于