9 references to Source
Microsoft.Maui.Controls (6)
WebView\WebView.cs (6)
18 /// <summary>Bindable property for <see cref="Source"/>.</summary> 19 public static readonly BindableProperty SourceProperty = BindableProperty.Create(nameof(Source), typeof(WebViewSource), typeof(WebView), default(WebViewSource), 206 WebViewSource source = Source; 218 WebViewSource source = Source; 330 IWebViewSource IWebView.Source => Source; 391 return $"Source = {Source}, {base.GetDebuggerDisplay()}";
Microsoft.Maui.Controls.Compatibility (3)
iOS\Renderers\WkWebViewRenderer.cs (3)
592 if (((WebView)Element).Source != null) 593 ((WebView)Element).Source.Load(this); 764 var args = new WebNavigatedEventArgs(_lastEvent, WebView.Source, url, WebNavigationResult.Success);