RoleManagerSection.CookiePath プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ロール名をキャッシュするために使用されるクッキーの仮想パスを取得または設定します。
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
プロパティ値
ロール名を保存するために使用するクッキーのパス。 既定値は "/" です。
- 属性
例
次のコード例は、プロパティの使用方法を 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
値を返します。 パスでは大文字と小文字が区別されます。