RoleManagerSection.CookieName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ロール名をキャッシュするために使用されるクッキーの名前を取得または設定します。
public:
property System::String ^ CookieName { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))]
[System.Configuration.ConfigurationProperty("cookieName", DefaultValue=".ASPXROLES")]
[System.Configuration.StringValidator(MinLength=1)]
public string CookieName { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))>]
[<System.Configuration.ConfigurationProperty("cookieName", DefaultValue=".ASPXROLES")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.CookieName : string with get, set
Public Property CookieName As String
プロパティ値
ロール名をキャッシュするために使用するクッキーの名前。 既定値は "ASPXROLES" です。
- 属性
例
次のコード例では、 プロパティの使用方法 CookieName を示します。 このコード例は、RoleManagerSection クラスのために提供されている大規模な例の一部です。
// Display CookieName property.
Console.WriteLine("CookieName: {0}", configSection.CookieName);
' Display CookieName property.
Console.WriteLine("CookieName: {0}", configSection.CookieName)
注釈
プロパティは CookieName 、ロール名のキャッシュに使用される Cookie の名前を返します。 ASP.NET アプリケーションの Web.config ファイルに 属性を cookieName
設定することで、アプリケーションに対してロールがキャッシュされる Cookie の名前を指定できます。 これは、アプリケーションの Cookie を一意に識別する場合や、Cookie が複数のアプリケーション間で共有されている場合に便利です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET