mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 05:24:12 +08:00
19 lines
416 B
C#
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; }
|
|
}
|
|
}
|