18 lines
No EOL
502 B
C#
18 lines
No EOL
502 B
C#
namespace Neighbourhood.omg.lol;
|
|
|
|
public partial class EphemeralWebPage : ContentPage
|
|
{
|
|
private NavigatorService NavigatorService { get; set; }
|
|
|
|
public EphemeralWebPage(NavigatorService navigatorService)
|
|
{
|
|
this.NavigatorService = navigatorService;
|
|
InitializeComponent();
|
|
this.webview.Source = $"https://home.omg.lol/ephemeral";
|
|
}
|
|
|
|
public async void webview_Navigating(object sender, WebNavigatingEventArgs e) {
|
|
var cookies = this.webview.Cookies;
|
|
Uri uri = new Uri(e.Url);
|
|
}
|
|
} |