6 references to BrowserLaunchFlags
Microsoft.Maui.Essentials (6)
Browser\Browser.ios.cs (2)
47 if (options.HasFlag(BrowserLaunchFlags.PresentAsFormSheet)) 49 else if (options.HasFlag(BrowserLaunchFlags.PresentAsPageSheet))
Browser\BrowserLaunchOptions.shared.cs (4)
40 /// <remarks>The default value is <see cref="BrowserLaunchFlags.None"/>. Not all flags work on all platforms, check the flag descriptions.</remarks> 41 public BrowserLaunchFlags Flags { get; set; } = BrowserLaunchFlags.None; 43 internal bool HasFlag(BrowserLaunchFlags flag) => Flags.HasFlag(flag);