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 html 및 URL 인코딩 작업의 기본 처리기로 HttpEncoder 형식을 사용합니다.

인코딩 동작을 사용자 지정하려면 형식에서 상속되는 클래스를 HttpEncoder 만들 수 있습니다. 애플리케이션에 대한 구성 파일에서 요소의 특성을 사용자 지정 형식의 EncoderType 정규화된 문자열 이름으로 설정합니다httpRuntime. 자세한 내용은 httpRuntime 요소(ASP.NET 설정 스키마)를 참조하세요.

적용 대상