HttpListenerResponse.ContentEncoding プロパティ
アセンブリ: System (system.dll 内)

Dim instance As HttpListenerResponse Dim value As Encoding value = instance.ContentEncoding instance.ContentEncoding = value
/** @property */ public Encoding get_ContentEncoding () /** @property */ public void set_ContentEncoding (Encoding value)
public function get ContentEncoding () : Encoding public function set ContentEncoding (value : Encoding)
OutputStream プロパティのデータへの使用に適した Encoding オブジェクト。エンコーディングが指定されていない場合は null 参照 (Visual Basic では Nothing)。


static string message403; static void SendBadCertificateResponse(HttpListenerResponse response) { StringBuilder message = new StringBuilder (); message.Append ("<HTML><BODY>"); message.Append ("<p> Error message 403: Access is denied due to a missing or invalid client certificate.</p>"); message.Append ("</BODY></HTML>"); message403 = message.ToString(); // Set up an authentication error response template. response.StatusCode = (int) HttpStatusCode.Forbidden; response.StatusDescription = "403 Forbidden"; response.ProtocolVersion = new Version("1.1"); response.SendChunked = false; // Turn the error message into a byte array using the // encoding from the response when present. System.Text.Encoding encoding = response.ContentEncoding; if (encoding == null) { encoding = System.Text.Encoding.UTF8; response.ContentEncoding = encoding; } byte[] buffer = encoding.GetBytes (message403); response.ContentLength64 = buffer.Length; // Write the error message. System.IO.Stream stream = response.OutputStream; stream.Write(buffer,0,buffer.Length); // Send the response. response.Close(); }

Windows 98, Windows Server 2003, Windows XP Media Center Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からHttpListenerResponse.ContentEncoding プロパティを検索する場合は、下記のリンクをクリックしてください。

- HttpListenerResponse.ContentEncoding プロパティのページへのリンク