Bagikan melalui


IHttpSessionState.LCID Properti

Definisi

Mendapatkan atau mengatur pengidentifikasi lokal (LCID) dari sesi saat ini.

public:
 property int LCID { int get(); void set(int value); };
public int LCID { get; set; }
member this.LCID : int with get, set
Public Property LCID As Integer

Nilai Properti

CultureInfo Instans yang menentukan budaya sesi saat ini.

Contoh

Contoh kode berikut mengimplementasikan LCID properti IHttpSessionState antarmuka untuk mendapatkan dan mengatur pengidentifikasi lokal untuk halaman saat ini.

//
// Session.LCID exists only to support legacy ASP compatibility. ASP.NET developers should use
// Page.LCID instead.
//
public int LCID
{
  get { return Thread.CurrentThread.CurrentCulture.LCID; }
  set { Thread.CurrentThread.CurrentCulture = CultureInfo.ReadOnly(new CultureInfo(value)); }
}
'
    ' Session.LCID exists only to support legacy ASP compatibility. ASP.NET developers should use
' Page.LCID instead.
'
Public Property LCID As Integer Implements IHttpSessionState.LCID
  Get
    Return Thread.CurrentThread.CurrentCulture.LCID
  End Get
  Set
    Thread.CurrentThread.CurrentCulture = CultureInfo.ReadOnly(new CultureInfo(value))
  End Set
End Property

Keterangan

Properti ini LCID disediakan untuk kompatibilitas dengan versi ASP yang lebih lama saja. Jika Anda tidak perlu mempertahankan kompatibilitas mundur dengan halaman ASP, gunakan properti sebagai gantinya LCID .

ASP.NET tidak menyimpan pengidentifikasi lokal dalam status sesi. Properti LCID memanggil LCID untuk mendapatkan dan mengatur pengidentifikasi.

Berlaku untuk

Lihat juga