HttpResponse.Charset 属性

定义

获取或设置输出流的 HTTP 字符集。

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

属性值

String

输出流的 HTTP 字符集。

例外

发送标头后设置 Charset 属性。

示例

以下示例检查输出流的字符集是否为中欧 (ISO) 。

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

注解

Charset该属性可以设置为null禁止显示 HTTP Content-Type 标头。

适用于