VisualsToXpsDocument.CancelAsync Method

Definition

Cancels an asynchronous writing operation.

public:
 override void CancelAsync();
public override void CancelAsync ();
override this.CancelAsync : unit -> unit
Public Overrides Sub CancelAsync ()

Exceptions

The state of the VisualsToXpsDocument is not compatible with a CancelAsync() operation.

Remarks

For example, an exception is thrown if the CancelAsync method is called and a writing operation is not in progress.

This method stores in the task it returns all non-usage exceptions that the method's synchronous counterpart can throw. If an exception is stored into the returned task, that exception will be thrown when the task is awaited. Usage exceptions, such as ArgumentException, are still thrown synchronously. For the stored exceptions, see the exceptions thrown by Cancel().

Applies to