Roles.CookieRequireSSL 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
서버에 반환되기 위해 역할 이름 쿠키에 SSL이 필요한지 여부를 나타내는 값을 가져옵니다.
public:
static property bool CookieRequireSSL { bool get(); };
public static bool CookieRequireSSL { get; }
static member CookieRequireSSL : bool
Public Shared ReadOnly Property CookieRequireSSL As Boolean
속성 값
SSL이 역할 이름 쿠키를 서버에 반환하는 데 필요하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
예제
다음 예제에서는 ASP.NET 애플리케이션에 system.web
대한 Web.config 파일의 섹션에 있는 roleManager 요소를 보여줍니다. 애플리케이션 사용 하도록 지정 하는 SqlRoleProvider 인스턴스 집합과 cookieRequireSSL
에 true
.
<roleManager defaultProvider="SqlProvider"
enabled="true"
cacheRolesInCookie="true"
cookieName=".ASPROLES"
cookieTimeout="30"
cookiePath="/MyApplication"
cookieRequireSSL="true"
cookieSlidingExpiration="true"
cookieProtection="Encrypted" >
<providers>
<add
name="SqlProvider"
type="System.Web.Security.SqlRoleProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</roleManager>
설명
SSL (Secure Sockets Layer)을 설정 하 여 애플리케이션에서 서버에 역할 이름 쿠키를 반환 해야 하는지 여부를 지정할 수 있습니다는 cookieRequireSSL
ASP.NET 애플리케이션의 Web.config 파일에는 특성입니다. 자세한 내용은 Secure를 참조하세요.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET