Share via


AppWindowCloseRequestedEventArgs.GetDeferral Method

Definition

Gets a deferral object for managing asynchronous work done in the CloseRequested event handler.

public:
 virtual Deferral ^ GetDeferral() = GetDeferral;
Deferral GetDeferral();
public Deferral GetDeferral();
function getDeferral()
Public Function GetDeferral () As Deferral

Returns

A deferral object.

Remarks

A deferral should be used if any asynchronous work is being done in the CloseRequested event handler, so that the next event in the sequence isn't raised until this work is completed.

Applies to

See also