mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-24 03:56:28 +00:00
Expose CoreWebView2 initialization logic
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using Microsoft.Web.WebView2.Core;
|
||||
using System;
|
||||
|
||||
namespace WpfExtended.Blazor.Exceptions;
|
||||
|
||||
public sealed class CoreWebView2Exception(CoreWebView2ProcessFailedEventArgs args, string message, Exception? innerException = default) : Exception(message, innerException)
|
||||
{
|
||||
public CoreWebView2ProcessFailedEventArgs Args { get; } = args ?? throw new ArgumentNullException(nameof(args));
|
||||
}
|
||||
Reference in New Issue
Block a user