Share via


LocalClientSecuritySettings.CacheCookies 속성

정의

보안 대화 쿠키가 캐시되는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool CacheCookies { bool get(); void set(bool value); };
public bool CacheCookies { get; set; }
member this.CacheCookies : bool with get, set
Public Property CacheCookies As Boolean

속성 값

쿠키가 캐시되면 true이고, 그렇지 않으면 false입니다.

예제

이 예제에서는 캐시할 보안 대화 쿠키를 설정하는 방법을 보여 줍니다.

LocalClientSecuritySettings settings =
    new LocalClientSecuritySettings();

bool cacheCookies = settings.CacheCookies;
Dim settings As New LocalClientSecuritySettings()

Dim cacheCookies As Boolean = settings.CacheCookies

적용 대상