// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; /// <summary> /// Delegate to the WebBrowser DocumentCompleted event. /// </summary> public delegate void WebBrowserDocumentCompletedEventHandler(object? sender, WebBrowserDocumentCompletedEventArgs e); |