Cloud Storage Integrator - Online Help
Cloud Storage Integrator
Questions / Feedback?

ResourceList Event

Fired for each resource listed.

Syntax

[VB.NET]
Public Event OnResourceList As OnResourceListHandler
[C#]
public event OnResourceListHandler OnResourceList;

public delegate void OnResourceListHandler(object sender, BoxResourceListEventArgs e);

class BoxResourceListEventArgs : EventArgs {
  bool Deleted {get;}
  string ETag {get;}
  string Id {get;}
  string Name {get;}
  string Revision {get;}
  int ResourceType {get;}
}

Remarks

This event fires about each resource listed when calling ListResources, GetResourceInfo, and Search.

Deleted indicates whether the resource is deleted.

ETag is the ETag of the resource.

Id is the resource Id.

Name is the name of the resource.

Revision is the current revision.

ResourceType indicates whether the resource is a file or folder. Possible values are:

0File
1Folder

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 1.0.6240.0