CoreWebView2DedicatedWorker.Destroying Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Add an event handler for the Destroying event that is raised when the
worker object is Destroying.
A worker object is Destroying when the worker script is terminated or when
the `CoreWebView2DedicatedWorker` object is Destroying.
If the worker has already been destroyed before the event handler is registered,
the handler will never be called.
public event EventHandler<object> Destroying;
member this.Destroying : EventHandler<obj>
Public Custom Event Destroying As EventHandler(Of Object)