次の方法で共有


RoleManagerSection.CookieName プロパティ

定義

ロール名をキャッシュするために使用されるクッキーの名前を取得または設定します。

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 が複数のアプリケーション間で共有されている場合に便利です。

適用対象