5 instantiations of UrlWebViewSource
Microsoft.Maui.Controls (5)
WebView\WebView.cs (2)
360 var args = new WebNavigatingEventArgs(evnt, new UrlWebViewSource { Url = url }, url); 369 var args = new WebNavigatedEventArgs(evnt, new UrlWebViewSource { Url = url }, url, result);
WebView\WebViewSource.cs (2)
14 return new UrlWebViewSource { Url = url?.AbsoluteUri }; 19 return new UrlWebViewSource { Url = url };
WebView\WebViewSourceTypeConverter.cs (1)
21 return new UrlWebViewSource { Url = strValue };
6 references to UrlWebViewSource
Microsoft.Maui.Controls (6)
UrlWebViewSource.cs (2)
10 public static readonly BindableProperty UrlProperty = BindableProperty.Create(nameof(Url), typeof(string), typeof(UrlWebViewSource), default(string), 11 propertyChanged: (bindable, oldvalue, newvalue) => ((UrlWebViewSource)bindable).OnSourceChanged());
WebView\WebViewSource.cs (2)
46 string str => (UrlWebViewSource)str, 47 Uri uri => (UrlWebViewSource)uri,
WebView\WebViewSourceTypeConverter.cs (2)
23 throw new InvalidOperationException(string.Format("Cannot convert \"{0}\" into {1}", strValue, typeof(UrlWebViewSource))); 28 if (value is not UrlWebViewSource uwvs)