maui-linux/Xamarin.Forms.Platform.WinRT/IImageSourceHandler.cs

16 строки
374 B
C#
Исходник Обычный вид История

2016-03-22 23:02:25 +03:00
using System.Threading;
using System.Threading.Tasks;
#if WINDOWS_UWP
namespace Xamarin.Forms.Platform.UWP
#else
namespace Xamarin.Forms.Platform.WinRT
#endif
{
public interface IImageSourceHandler : IRegisterable
{
Task<Windows.UI.Xaml.Media.ImageSource> LoadImageAsync(ImageSource imagesource, CancellationToken cancellationToken = default(CancellationToken));
2016-03-22 23:02:25 +03:00
}
}