RoleManagerSection.CreatePersistentCookie 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
역할 이름을 캐시하는 데 세션 기반 쿠키를 사용하는지 영구 쿠키를 사용하는지를 나타냅니다.
public:
property bool CreatePersistentCookie { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("createPersistentCookie", DefaultValue=false)]
public bool CreatePersistentCookie { get; set; }
[<System.Configuration.ConfigurationProperty("createPersistentCookie", DefaultValue=false)>]
member this.CreatePersistentCookie : bool with get, set
Public Property CreatePersistentCookie As Boolean
속성 값
역할 이름 쿠키를 모든 브라우저 세션에 영구적으로 사용하려면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
- 특성
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 CreatePersistentCookie 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 RoleManagerSection 클래스입니다.
// Display CreatePersistentCookie property.
Console.WriteLine("CreatePersistentCookie: {0}",
configSection.CreatePersistentCookie);
' Display CreatePersistentCookie property.
Console.WriteLine("CreatePersistentCookie: {0}", _
configSection.CreatePersistentCookie)
설명
CreatePersistentCookie 속성 역할 이름을 캐시 하는 데 사용 되는 쿠키는 브라우저를 닫을 때 쿠키 손실 되는 의미 하는 세션 기반 쿠키를 또는 쿠키를 통해 사용할 수 있는지를 의미 하는 영구 쿠키를 이어야 합니다 있는지 여부를 나타냅니다 브라우저 세션입니다. 기본값은 false
, 역할 이름을 캐시 하는 세션 기반 쿠키 사용 되도록 나타냅니다.