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 };
5 references to StreamImageSource
Microsoft.Maui.Controls (2)
Hosting\AppHostBuilderExtensions.cs (1)
228 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),
Microsoft.Maui.Controls.Compatibility (3)
AppHostBuilderExtensions.cs (1)
97 Internals.Registrar.Registered.Register(typeof(StreamImageSource), typeof(StreamImagesourceHandler));
Tizen\Renderers\ImageRenderer.cs (1)
113 if (imageSource is StreamImageSource streamsource && streamsource.Stream != null)
Tizen\StaticRegistrar.cs (1)
82 Registered.Register(typeof(StreamImageSource), () => new StreamImageSourceHandler());