1 implementation of IBrowser
Microsoft.Maui.Essentials (1)
Browser\Browser.netstandard.tvos.watchos.cs (1)
7 partial class BrowserImplementation : IBrowser
16 references to IBrowser
Microsoft.Maui.Essentials (16)
Browser\Browser.shared.cs (14)
72 static IBrowser? defaultImplementation; 77 public static IBrowser Default => 80 internal static void SetDefault(IBrowser? implementation) => 85 /// This class contains static extension methods for use with <see cref="IBrowser"/>. 92 /// <param name="browser">The <see cref="IBrowser"/> instance to invoke this method on.</param> 95 public static Task<bool> OpenAsync(this IBrowser browser, string uri) => 101 /// <param name="browser">The <see cref="IBrowser"/> instance to invoke this method on.</param> 105 public static Task<bool> OpenAsync(this IBrowser browser, string uri, BrowserLaunchMode launchMode) => 111 /// <param name="browser">The <see cref="IBrowser"/> instance to invoke this method on.</param> 115 public static Task<bool> OpenAsync(this IBrowser browser, string uri, BrowserLaunchOptions options) => 121 /// <param name="browser">The <see cref="IBrowser"/> instance to invoke this method on.</param> 124 public static Task<bool> OpenAsync(this IBrowser browser, Uri uri) => 130 /// <param name="browser">The <see cref="IBrowser"/> instance to invoke this method on.</param> 134 public static Task<bool> OpenAsync(this IBrowser browser, Uri uri, BrowserLaunchMode launchMode) =>
Launcher\Launcher.shared.cs (2)
14 /// <para>If you are looking to open the browser to a website then you should refer to the <see cref="IBrowser"/> API.</para> 56 /// <para>If you are looking to open the browser to a website then you should refer to the <see cref="IBrowser"/> API.</para>