summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/CollectionSynchronizationCallback.cs
blob: e186e016175e734dabfb5e3661c8f95c3561d079 (plain)
1
2
3
4
5
6
7
using System;
using System.Collections;

namespace Xamarin.Forms
{
	public delegate void CollectionSynchronizationCallback(IEnumerable collection, object context, Action accessMethod, bool writeAccess);
}