Condividi tramite


HttpRuntimeSection.EncoderType Proprietà

Definizione

Ottiene o imposta il nome di un tipo personalizzato che può essere usato per gestire la codifica HTML e 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

Valore della proprietà

Nome di un tipo che può essere usato per gestire la codifica HTML e URL.

Attributi

Commenti

ASP.NET usa il HttpEncoder tipo come gestore predefinito per le attività di codifica HTML e URL.

Per personalizzare il comportamento di HttpEncoder codifica, è possibile creare una classe che eredita dal tipo. Nel file di configurazione per un'applicazione viene quindi impostato l'attributo EncoderType dell'elemento httpRuntime sul nome stringa completo del tipo personalizzato. Per altre informazioni, vedere elemento httpRuntime (ASP.NET Schema impostazioni).

Si applica a