Exemplo n.º 1
0
        void OnAsyncDataSingleTaskFinished(AsyncBufferredDataSource <TTuple> .LoadingTask task)
        {
            // Make sure the adapter wasn't disposed meanwhile
            if (_Adapter == null || !_Adapter.IsInitialized)
            {
                Dispose();
                return;
            }

            _Adapter.RefreshRange(task.FirstItemIndex, task.CountToRead);
        }