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

Dim instance As HttpListenerResponse Dim value As Version value = instance.ProtocolVersion instance.ProtocolVersion = value
/** @property */ public Version get_ProtocolVersion () /** @property */ public void set_ProtocolVersion (Version value)
public function get ProtocolVersion () : Version public function set ProtocolVersion (value : Version)
クライアントへの応答時に使用される HTTP のバージョンを表す Version オブジェクト。



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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


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