次の方法で共有


RoleManagerSection.CookiePath プロパティ

定義

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

public:
 property System::String ^ CookiePath { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))]
[System.Configuration.ConfigurationProperty("cookiePath", DefaultValue="/")]
[System.Configuration.StringValidator(MinLength=1)]
public string CookiePath { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.WhiteSpaceTrimStringConverter))>]
[<System.Configuration.ConfigurationProperty("cookiePath", DefaultValue="/")>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.CookiePath : string with get, set
Public Property CookiePath As String

プロパティ値

String

ロール名を保存するために使用するクッキーのパス。 既定値は "/" です。

属性

次のコード例は、プロパティの使用方法を CookiePath 示しています。 このコード例は、RoleManagerSection クラスのために提供されている大規模な例の一部です。

// Display CookiePath property.
Console.WriteLine("CookiePath: {0}", configSection.CookiePath);
' Display CookiePath property.
Console.WriteLine("CookiePath: {0}", configSection.CookiePath)

注釈

ASP.NET アプリケーションのWeb.config ファイルに属性を設定cookiePathすることで、アプリケーションのロール名がキャッシュされる Cookie のパスを指定できます。 このプロパティは CookiePath 、Web.config ファイルから属性の cookiePath 値を返します。 パスでは大文字と小文字が区別されます。

適用対象