2 instantiations of StreamImageSource
Microsoft.Maui.Controls (2)
ImageSource.cs (2)
91
return new
StreamImageSource
{ Stream = token => Task.Run(stream, token) };
97
return new
StreamImageSource
{ Stream = stream };
2 references to StreamImageSource
Microsoft.Maui.Controls (2)
Hosting\AppHostBuilderExtensions.cs (1)
234
services.AddService<
StreamImageSource
>(svcs => new StreamImageSourceService(svcs.CreateLogger<StreamImageSourceService>()));
StreamImageSource.cs (1)
13
public static readonly BindableProperty StreamProperty = BindableProperty.Create(nameof(Stream), typeof(Func<CancellationToken, Task<Stream>>), typeof(
StreamImageSource
),