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

Dim instance As HttpListenerResponse Dim value As String value = instance.StatusDescription instance.StatusDescription = value
/** @property */ public String get_StatusDescription () /** @property */ public void set_StatusDescription (String value)
public function get StatusDescription () : String public function set StatusDescription (value : String)
クライアントへ返される HTTP ステータス コードの説明テキスト。既定値は、StatusCode プロパティ値に対する RFC 2616 の説明、または RFC 2616 の説明が存在しない場合は空の文字列 ("") です。


// When the client is not authenticated, there is no Identity. if (context.User == null) { message.Append ("<HTML><BODY><p> Hello local user! </p></BODY></HTML>"); } else { // Get the requester's identity. System.Security.Principal.WindowsIdentity identity = WindowsIdentity.GetCurrent(); // Construct the response body. message.AppendFormat ("<HTML><BODY><p> Hello {0}!<br/>", identity.Name); message.AppendFormat ("You were authenticated using {0}.</p>", identity.AuthenticationType); message.Append ("</BODY></HTML>"); } // Configure the response. HttpListenerResponse response = context.Response; // Use the encoding from the response if one has been set. // Otherwise, use UTF8. System.Text.Encoding encoding = response.ContentEncoding; if (encoding == null) { encoding = System.Text.Encoding.UTF8; response.ContentEncoding = encoding; } byte[] buffer = encoding.GetBytes (message.ToString ()); response.ContentLength64 = buffer.Length; response.StatusCode = (int) HttpStatusCode.OK; response.StatusDescription = "OK"; response.ProtocolVersion = new Version ("1.1"); // Don't keep the TCP connection alive; // We don't expect multiple requests from the same client. response.KeepAlive = false; // Write the response body. System.IO.Stream stream = response.OutputStream; stream.Write(buffer, 0, buffer.Length);

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


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

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