зеркало из https://github.com/DeGsoft/maui-linux.git
16 строки
374 B
C#
16 строки
374 B
C#
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));
|
|
}
|
|
} |