Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IEditorProvider.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63364498ce97aa2d5ea24bad378914ced64c4462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Threading.Tasks;

namespace Xamarin.PropertyEditing
{
	public interface IEditorProvider
	{
		Task<IObjectEditor> GetObjectEditorAsync (object item);

		/// <summary>
		/// Creates a representation value of the <paramref name="type"/> and returns it.
		/// </summary>
		Task<object> CreateObjectAsync (ITypeInfo type);
	}
}