Implemented interface member:
property
Uri
Microsoft.Maui.IUriImageSource.Uri
1 write to Uri
Microsoft.Maui.Controls (1)
ImageSource.cs (1)
105 return new UriImageSource { Uri = uri };
9 references to Uri
Microsoft.Maui.Controls (8)
ImageSourceConverter.cs (1)
39 return uis.Uri.ToString();
UriImageSource.cs (7)
15 /// <summary>Bindable property for <see cref="Uri"/>.</summary> 17 nameof(Uri), typeof(Uri), typeof(UriImageSource), default(Uri), 30 public override bool IsEmpty => Uri == null; 65 stream = await GetStreamAsync(Uri, CancellationTokenSource.Token); 75 Application.Current?.FindMauiContext()?.CreateLogger<UriImageSource>()?.LogWarning(ex, "Error getting stream for {Uri}", Uri); 85 return $"Uri: {Uri}"; 126 Application.Current?.FindMauiContext()?.CreateLogger<UriImageSource>()?.LogWarning(ex, "Error getting stream for {Uri}", Uri);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\ImageRenderer.cs (1)
97 return await image.LoadAsync(src.Uri.AbsoluteUri);