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

IAvailabilityConstraint.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 637f3e4c20737c219064e6a106118e0d52e091c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Threading.Tasks;

namespace Xamarin.PropertyEditing
{
	public interface IAvailabilityConstraint
	{
		/// <summary>
		/// Gets a list of properties associated with the constraint.
		/// </summary>
		/// <remarks>
		/// This list can be empty (or <c>null</c>) if the constraint is not based on regular properties. Properties listed here will
		/// be monitored for changes and the availability re-queried when they do change. The list of properties will not be monitored
		/// for changes.
		/// </remarks>
		IReadOnlyList<IPropertyInfo> ConstrainingProperties { get; }

		/// <exception cref="ArgumentNullException"><paramref name="editor"/> is <c>null</c>.</exception>
		Task<bool> GetIsAvailableAsync (IObjectEditor editor);
	}
}