Bagikan melalui


IHttpSessionState.IsNewSession Properti

Definisi

Mendapatkan nilai yang menunjukkan apakah sesi dibuat dengan permintaan saat ini.

public:
 property bool IsNewSession { bool get(); };
public bool IsNewSession { get; }
member this.IsNewSession : bool
Public ReadOnly Property IsNewSession As Boolean

Nilai Properti

true jika sesi dibuat dengan permintaan saat ini; jika tidak, false.

Contoh

Contoh kode berikut mengimplementasikan IsNewSession properti IHttpSessionState antarmuka.

public bool IsNewSession
{
  get { return pNewSession; }
}
Public ReadOnly Property IsNewSession As Boolean Implements IHttpSessionState.IsNewSession
  Get
    Return pNewSession
  End Get
End Property

Berlaku untuk

Lihat juga