HttpResponse.Charset Proprietà

Definizione

Ottiene o imposta il set di caratteri HTTP del flusso di output.

public:
 property System::String ^ Charset { System::String ^ get(); void set(System::String ^ value); };
public string Charset { get; set; }
member this.Charset : string with get, set
Public Property Charset As String

Valore della proprietà

Set di caratteri HTTP del flusso di output.

Eccezioni

La proprietà Charset è stata impostata dopo l'invio delle intestazioni.

Esempio

Nell'esempio seguente viene verificato se il set di caratteri del flusso di output è l'ISO (Central European).

if (Response.Charset == "iso-8859-2")
{
    // ...
}
If Response.Charset = "iso-8859-2" Then
    '...
End If

Commenti

La Charset proprietà può essere impostata su per null eliminare l'intestazione HTTP Content-Type .

Si applica a