detect/WebViewControl.Avalonia/UnhandledAsyncExceptionEventArgs.cs
2024-11-13 17:09:15 +08:00

19 lines
416 B
C#

using System;
namespace WebViewControl {
public class UnhandledAsyncExceptionEventArgs {
public UnhandledAsyncExceptionEventArgs(Exception e, string frameName) {
Exception = e;
FrameName = frameName;
}
public Exception Exception { get; private set; }
public string FrameName { get; private set; }
public bool Handled { get; set; }
}
}