Xamarin.Forms/Xamarin.Forms.Platform.UAP/IImageSourceHandler.cs

10 строки
304 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace Xamarin.Forms.Platform.UWP
{
public interface IImageSourceHandler : IRegisterable
{
Task<Windows.UI.Xaml.Media.ImageSource> LoadImageAsync(ImageSource imagesource, CancellationToken cancellationToken = default(CancellationToken));
}
}