Skip to main content
A newer version of this page is available.
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.

SnapDocumentServer.AsynchronousOperationStarted Event

Occurs after starting an asynchronous operation in a separate thread.

Namespace: DevExpress.Snap

Assembly: DevExpress.Docs.v19.1.dll

Declaration

public event EventHandler AsynchronousOperationStarted

Event Data

The AsynchronousOperationStarted event's data class is EventArgs.

Remarks

Handle this event to track the status of asynchronous operations that are being currently performed in separate threads and avoid simultaneous execution of similar operations.

The document assembly is processed to an entirely separate thread to avoid application lock-ups.

An example of an asynchronous operation that is performed in a separate thread is the Finish & Merge command that triggers the assembling of a mail merge document.

snap-mail-merge-background-performing-separate-thread

See Also