detect/WebViewControl.Avalonia/UnhandledAsyncExceptionEventArgs.cs

19 lines
416 B
C#
Raw Normal View History

2024-11-13 17:09:15 +08:00
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; }
}
}