SessionStateSection.CookieName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
クッキー名を取得または設定します。
public:
property System::String ^ CookieName { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("cookieName", DefaultValue="ASP.NET_SessionId")]
public string CookieName { get; set; }
[<System.Configuration.ConfigurationProperty("cookieName", DefaultValue="ASP.NET_SessionId")>]
member this.CookieName : string with get, set
Public Property CookieName As String
プロパティ値
セッション識別で使用される HTTP クッキーの名前。
- 属性
例
次のコード例では、 プロパティを取得する方法を CookieName 示します。 セクションを取得する方法については、クラス トピックの SessionStateSection コード例を参照してください。
// Display the current CookieName property value.
Console.WriteLine("CookieName: {0}",
sessionStateSection.CookieName);
' Display the current CookieName property value.
Console.WriteLine("CookieName: {0}", sessionStateSection.CookieName)
注釈
既定値は "ASP.NET_SessionId"
です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET