Skip to main content
.NET 6.0+

Session.IsConnected Property

Gets whether the session is connected to a database.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

[Browsable(false)]
public bool IsConnected { get; }

Property Value

Type Description
Boolean

true if the session is connected to a database; otherwise, false.

Remarks

To connect a session to a database use the Session.Connect method. To disconnect the session currently connected, use the Session.Disconnect method.

See Also