Bagikan melalui


Roles.CookiePath Properti

Definisi

Mendapatkan jalur untuk cookie nama peran yang di-cache.

public:
 static property System::String ^ CookiePath { System::String ^ get(); };
public static string CookiePath { get; }
static member CookiePath : string
Public Shared ReadOnly Property CookiePath As String

Nilai Properti

Jalur cookie tempat nama peran di-cache. Defaultnya adalah /.

Contoh

Contoh berikut menunjukkan elemen roleManager di bagian system.web file Web.config untuk aplikasi ASP.NET. Ini menentukan bahwa aplikasi menggunakan instans SqlRoleProvider dan mengatur cookiePath atribut ke /MyApplication.

<roleManager defaultProvider="SqlProvider"
  enabled="true"
  cacheRolesInCookie="true"
  cookieName=".ASPROLES"
  cookieTimeout="30"
  cookiePath="/MyApplication"
  cookieRequireSSL="false"
  cookieSlidingExpiration="true"
  cookieProtection="All" >
  <providers>
    <add
      name="SqlProvider"
      type="System.Web.Security.SqlRoleProvider"
      connectionStringName="SqlServices"
      applicationName="MyApplication" />
  </providers>
</roleManager>

Keterangan

Anda dapat menentukan jalur cookie tempat peran di-cache untuk aplikasi Anda dengan mengatur cookiePath atribut dalam file Web.config untuk aplikasi ASP.NET Anda. Untuk informasi selengkapnya tentang jalur cookie, lihat Path.

Berlaku untuk

Lihat juga