HttpResponse.Charset Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le jeu de caractères HTTP du flux de sortie.
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
Valeur de propriété
Jeu de caractères HTTP du flux de sortie.
Exceptions
La propriété Charset
a été définie après l'envoi d'en-têtes.
Exemples
L’exemple suivant vérifie si le jeu de caractères du flux de sortie est d’Europe centrale (ISO).
if (Response.Charset == "iso-8859-2")
{
// ...
}
If Response.Charset = "iso-8859-2" Then
'...
End If
Remarques
La Charset
propriété peut être définie sur null
pour supprimer l’en-tête HTTP Content-Type
.