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

クライアントに応答を送り返すために使用する HttpListenerResponse オブジェクト。

アプリケーションで、このプロパティから返される HttpListenerResponse オブジェクトのプロパティを設定することによって、応答を構成します。応答を構成したら、応答を閉じることによって、またはこの HttpListenerContext オブジェクトを閉じることによって、その応答をクライアントに送信します。
呼び出し時の注意 メモ : このメンバは、アプリケーションでネットワーク トレースが有効にされている場合にトレース情報を出力します。詳細については、「ネットワークのトレース」を参照してください。
クライアントの要求に対する応答を取得し、応答本体を追加するコード例を次に示します。
// This example requires the System and System.Net namespaces. public static string ClientInformation(HttpListenerContext context) { System.Security.Principal.IPrincipal user = context.User; System.Security.Principal.IIdentity id = user.Identity; if (id == null) { return "Client authentication is not enabled for this Web server."; } string display; if (id.IsAuthenticated) { display = String.Format("{0} was authenticated using {1}", id.Name, id.AuthenticationType); } else { display = String.Format("{0} was not authenticated", id.Name); } return display; } public static void SimpleListenerWithAuthentication(string[] prefixes) { if (!HttpListener.IsSupported) { Console.WriteLine ("Windows XP SP2 or Server 2003 is required to use the HttpListener class."); return; } // URI prefixes are required, // for example "http://contoso.com:8080/index/". if (prefixes == null || prefixes.Length == 0) throw new ArgumentException("prefixes"); // Set up a listener. HttpListener listener = new HttpListener(); foreach (string s in prefixes) { listener.Prefixes.Add(s); } listener.Start(); // Specify Negotiate as the authentication scheme. listener.AuthenticationSchemes = AuthenticationSchemes.Negotiate; Console.WriteLine("Listening..."); // GetContext blocks while waiting for a request. HttpListenerContext context = listener.GetContext(); HttpListenerRequest request = context.Request; // Obtain a response object. HttpListenerResponse response = context.Response; // Construct a response. string clientInformation = ClientInformation(context); byte[] buffer = System.Text.Encoding.UTF8.GetBytes("<HTML><BODY> " + clientInformation + "</BODY></HTML>"); // Get a response stream and write the response to it. response.ContentLength64 = buffer.Length; System.IO.Stream output = response.OutputStream; output.Write(buffer,0,buffer.Length); output.Close(); listener.Stop(); }

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


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

- HttpListenerContext.Response プロパティのページへのリンク