Exemplo n.º 1
0
        public override void EnumerateItems(FullEnumerationContext context)
        {
            List <ItemFieldDictionary> items = new List <ItemFieldDictionary>();

            //foreach (ulong id in _metadataStore.Ids)
            //{
            //    items.Add(_store.CreateItemFieldDictionary(id));
            //}
            context.ReportItems(items);
        }
Exemplo n.º 2
0
 public override void EnumerateItems(FullEnumerationContext context)
 {
     try
     {
         List <ItemFieldDictionary> items = api.ListNodes();
         context.ReportItems(items);
     }
     catch (ApplicationException e)
     {
         NotifyError(e);
         throw;
     }
 }
 // EnumerateItems is called by the framework to look for changes (inserts, updates, deletes) in the data store.
 // It should enumerate all of the items currently in the store and return the properties that were specified by the MetadataSchema property.
 public override void EnumerateItems(FullEnumerationContext context)
 {
     List<ItemFieldDictionary> items = DataStore.ListBlobs();
     context.ReportItems(items);
 }
Exemplo n.º 4
0
        // EnumerateItems is called by the framework to look for changes (inserts, updates, deletes) in the data store.
        // It should enumerate all of the items currently in the store and return the properties that were specified by the MetadataSchema property.
        public override void EnumerateItems(FullEnumerationContext context)
        {
            List <ItemFieldDictionary> items = DataStore.ListBlobs();

            context.ReportItems(items);
        }
Exemplo n.º 5
0
 public override void EnumerateItems(FullEnumerationContext context)
 {
     try
     {
         List<ItemFieldDictionary> items = api.ListNodes();
         context.ReportItems(items);
     }
     catch (ApplicationException e)
     {
         NotifyError(e);
         throw;
     }
 }
 // EnumerateItems is called by the framework to look for changes (inserts, updates, deletes) in the data store.
 // It should enumerate all of the items currently in the store and return the properties that were specified by the MetadataSchema property.
 public override void EnumerateItems(FullEnumerationContext context)
 {
     var items = DataStore.ListBlobs();
     context.ReportItems(items);
 }