コード例 #1
0
        public Bundle FirstPage(Bundle bundle, int count)
        {
            Snapshot snapshot = Snapshot.TakeSnapshotFromBundle(bundle);

            if (bundle.Entries.Count > count)
            {
                _store.StoreSnapshot(snapshot);
            }

            // Return the first page
            return(GetPage(snapshot, 0, count));
        }