다음을 통해 공유


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

속성 값

String

역할 이름을 캐시하는 데 사용하는 쿠키의 이름입니다. 기본값은 ".ASPXROLES"입니다.

특성

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 CookieName 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 RoleManagerSection 클래스입니다.

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

설명

CookieName 속성 역할 이름을 캐시 하는 사용 되는 쿠키의 이름을 반환 합니다. 설정 하 여 애플리케이션에 대 한 역할 캐시 되는 쿠키의 이름을 지정할 수 있습니다는 cookieName ASP.NET 애플리케이션의 Web.config 파일에는 특성입니다. 고유 하 게 애플리케이션에 대 한 쿠키를 식별 하려는 경우 또는 여러 애플리케이션 간에 쿠키 공유 되는 경우에 유용 합니다.

적용 대상