using System.IO; using System.Threading.Tasks; namespace Xamarin.PropertyEditing { public interface IIconProvider { /// /// Gets an icon for the given . /// /// The types to get an icon for. /// /// The types provided in may not be the same. /// If they aren't, you should return a generic icon (VS uses an XML Tag). /// Task GetTypeIconAsync (ITypeInfo[] types); } }