using System.Threading.Tasks; namespace Xamarin.PropertyEditing { public interface IEditorProvider { Task GetObjectEditorAsync (object item); /// /// Creates a representation value of the and returns it. /// Task CreateObjectAsync (ITypeInfo type); } }