RoleManagerSection.CookieName 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
역할 이름을 캐시하는 데 사용하는 쿠키의 이름을 가져오거나 설정합니다.
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 속성 역할 이름을 캐시 하는 사용 되는 쿠키의 이름을 반환 합니다. 설정 하 여 애플리케이션에 대 한 역할 캐시 되는 쿠키의 이름을 지정할 수 있습니다는 cookieName
ASP.NET 애플리케이션의 Web.config 파일에는 특성입니다. 고유 하 게 애플리케이션에 대 한 쿠키를 식별 하려는 경우 또는 여러 애플리케이션 간에 쿠키 공유 되는 경우에 유용 합니다.