다음을 통해 공유


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)

설명

설정 하 여 애플리케이션에 대 한 역할 이름이 캐시 되는 쿠키의 경로 지정할 수 있습니다는 cookiePath ASP.NET 애플리케이션의 Web.config 파일에는 특성입니다. 합니다 CookiePath 속성의 값을 반환 합니다 cookiePath Web.config 파일에서 특성입니다. 경로는 대/소문자를 구분합니다.

적용 대상