HttpListenerResponse.CopyFrom メソッド
アセンブリ: System (system.dll 内)

Dim instance As HttpListenerResponse Dim templateResponse As HttpListenerResponse instance.CopyFrom(templateResponse)

定期的に多数のプロパティを既定値から新しい値のセットに変更する場合は、HttpListenerResponse インスタンスをテンプレートとして使用すると便利です。各応答を個別に構成するのではなく、テンプレート応答を 1 回だけカスタマイズし、CopyFrom メソッドを呼び出して、テンプレート応答のプロパティ値に基づいて新しい応答を構成します。
次のプロパティが templateResponse から現在のインスタンスにコピーされます。
-
ContentLength64
-
StatusDescription
-
ProtocolVersion

テンプレート応答をコピーして応答を作成するコード例を次に示します。
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.CopyFrom メソッドを検索する場合は、下記のリンクをクリックしてください。

- HttpListenerResponse.CopyFrom メソッドのページへのリンク