Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

using System;
using System.ComponentModel;
using System.Threading.Tasks;

using Microsoft.Identity.Client;
Expand All @@ -17,7 +18,8 @@ public class BrowserCustomizationOptions
/// Specifies if the public client application should used an embedded web browser
/// or the system default browser
/// </summary>
[Obsolete("This option requires additional dependencies on Microsoft.Identity.Client.Desktop and is no longer supported. Consider using brokered authentication instead")]
[Obsolete("This option requires additional dependencies on Microsoft.Identity.Client.Desktop and is no longer supported. Consider using brokered authentication instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public bool? UseEmbeddedWebView { get; set; }

internal SystemWebViewOptions SystemBrowserOptions;
Expand Down
Loading