I set a .NET System.Windows.Controls.WebBrowser
control's Navigate
method as such...
webBrowser1.Navigate("https://myorg.sharepoint.com/sites/mysite");
The network requires ADFS multi-factor authentication, and the request is redirected to ADFS login. The control renders the Office 365 "Pick an Account" screen, where I select a valid account and see the message "Taking you to your organisation's sign in page". I hear an audible click indicating the control is navigating to another page. That page is never displayed in the control. The next method does nothing.
webBrowser1.Update();
The control's canvas remains empty.
MFA does not seem to be an issue. The BrowserEmulationVersion is set to VersionIE11Edge (11001)
Any ideas why this control is not rendering the result?