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

要求に伴う Cookie を格納している CookieCollection。要求に Cookie が含まれていない場合、このプロパティは空のコレクションを返します。


要求と共に送信された Cookie の値を表示するコード例を次に示します。
// This example requires the System and System.Net nam'espaces. public static void DisplayCookies(HttpListenerRequest request) { // Print the properties of each cookie. foreach (Cookie cook in request.Cookies) { Console.WriteLine("Cookie:"); Console.WriteLine("{0} = {1}", cook.Name, cook.Value); Console.WriteLine("Domain: {0}", cook.Domain); Console.WriteLine("Path: {0}", cook.Path); Console.WriteLine("Port: {0}", cook.Port); Console.WriteLine("Secure: {0}", cook.Secure); Console.WriteLine("When issued: {0}", cook.TimeStamp); Console.WriteLine("Expires: {0} (expired? {1})", cook.Expires, cook.Expired); Console.WriteLine("Don't save: {0}", cook.Discard); Console.WriteLine("Comment: {0}", cook.Comment); Console.WriteLine("Uri for comments: {0}", cook.CommentUri); Console.WriteLine("Version: RFC {0}" , cook.Version == 1 ? "2109" : "2965"); // Show the string representation of the cookie. Console.WriteLine ("String: {0}", cook.ToString()); } }

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


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

- HttpListenerRequest.Cookies プロパティのページへのリンク