Skip to main content
.NET 6.0+

ServerExceptionThrownEventArgs.Exception Property

Gets the exception thrown by a data server in Server Mode.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public Exception Exception { get; }

Property Value

Type Description
Exception

The data server exception.

Remarks

The XPServerCollectionSource.ServerExceptionThrown event is raised when a data server in server mode throws an exception. Use the Exception property to get the exception’s details. To specify how to handle the exception, use the ServerExceptionThrownEventArgs.Action property.

See Also