MicrosoftEdge / MicrosoftEdge/WebView2Feedback

[Problem/Bug]: System.Runtime.InteropServices.COMException

Open
#5,279 0 comments 0 reactions 1 assignee View on GitHub

@prija-microsoft is already working on this.

Since Jun 18, 2025.

bug
Dominant language
PowerShell
Stars
526
Forks
67
PR merge metrics
No merged PRs in 30d

Description

What happened?

hello everyone, I got this trouble, can you help me?

Microsoft.Web.WebView2.Core 1.0.3296.44

2025-06-18 11:22:38,538 [1] INFO WebviewWrapper - retryCount: 1
2025-06-18 11:22:38,749 [1] ERROR WebviewWrapper - Exception Type: System.Runtime.InteropServices.COMException
2025-06-18 11:22:38,750 [1] ERROR WebviewWrapper - Message: 已中止操作 (异常来自 HRESULT:0x80004004 (E_ABORT))
2025-06-18 11:22:38,806 [1] ERROR WebviewWrapper - StackTrace: 在 System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
在 Microsoft.Web.WebView2.Core.CoreWebView2Environment.d__15.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task)
在 Microsoft.Web.WebView2.WinForms.WebView2.d__25.MoveNext()
--- 引发异常的上一位置中堆栈跟踪的末尾 ---
在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
在 System.Runtime.CompilerServices.TaskAwaiter.GetResult()
在 WebviewWrapper.WebviewForm.d__8.MoveNext()
2025-06-18 11:22:39,004 [1] INFO WebviewWrapper - retryCount: 2
2025-06-18 11:22:39,006 [1] ERROR WebviewWrapper - Exception Type: System.InvalidOperationException
2025-06-18 11:22:39,006 [1] ERROR WebviewWrapper - Message: The instance of CoreWebView2 is disposed and unable to complete this operation.
2025-06-18 11:22:39,007 [1] ERROR WebviewWrapper - StackTrace: 在 Microsoft.Web.WebView2.WinForms.WebView2.VerifyNotClosedGuard()
在 Microsoft.Web.WebView2.WinForms.WebView2.EnsureCoreWebView2Async(CoreWebView2Environment environment, CoreWebView2ControllerOptions controllerOptions)
在 Microsoft.Web.WebView2.WinForms.WebView2.EnsureCoreWebView2Async(CoreWebView2Environment environment)

Importance

Blocking. My app's basic functions are not working due to this issue.

Runtime Channel

Stable release (WebView2 Runtime)

Runtime Version

No response

SDK Version

No response

Framework

Winforms

Operating System

Windows 11

OS Version

No response

Repro steps

public static async Task GetEnvironmentAsync(string userDataFolderTag, bool bDebug, int logLevel)
{
if (_sharedEnvironment != null)
return _sharedEnvironment;

string exeDir = AppDomain.CurrentDomain.BaseDirectory;
string userDataFolder = Path.Combine(exeDir, userDataFolderTag);

var args = new List<string>
{
    "--disable-web-security",
    "--allow-file-access-from-files",
    "--disable-application-cache --disable-cache",
    "--disk-cache-size=0"
};

if (bDebug)
{
    args.Add("--enable-logging");
    args.Add("--v=" + logLevel);
    args.Add("--remote-debugging-port=" + GetAvailablePort());
}

var options = new CoreWebView2EnvironmentOptions
{
    AdditionalBrowserArguments = string.Join(" ", args)
};

_sharedEnvironment = await CoreWebView2Environment.CreateAsync(null, userDataFolder, options);

return _sharedEnvironment;

}

var sharedEnv = await WebView2EnvironmentManager.GetEnvironmentAsync("WebView2Data", bDebug, logLevel);

await webView.EnsureCoreWebView2Async(sharedEnv);

Repros in Edge Browser

No, issue does not reproduce in the corresponding Edge version

Regression

Don't know

Last working version (if regression)

No response

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.