Condividi tramite


IHttpSessionState.IsNewSession Proprietà

Definizione

Ottiene un valore che indica se la sessione è stata creata con la richiesta corrente.

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

Valore della proprietà

true se la sessione è stata creata con la richiesta corrente, altrimenti false.

Esempio

Nell'esempio di codice seguente viene implementata la IsNewSession proprietà dell'interfaccia IHttpSessionState .

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

Si applica a

Vedi anche