summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IStreamImageSource.cs
blob: 92a7e9582370ec51476fe0bbb384660214c96ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.IO;
using System.Threading;
using System.Threading.Tasks;

namespace Xamarin.Forms
{
	public interface IStreamImageSource
	{
		Task<Stream> GetStreamAsync(CancellationToken userToken = default(CancellationToken));
	}
}