Cloud Storage Integrator 2016 .NET Edition
Cloud Storage Integrator 2016 .NET Edition
Questions / Feedback?

ResourceList Event

Fires once for each resource when ListResources is called.

Syntax

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

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

class GoogledriveResourceListEventArgs : EventArgs {
  string Id {get;}
  string Name {get;}
  string Description {get;}
  int ResourceType {get;}
  string Extension {get;}
  string ModifiedTime {get;}
  long Size {get;}
}

Remarks

This event fires once for each resource returned when ListResources is called.

Id is the Id of the resource.

Name holds the resource's name.

Description holds a short description of the resource (if any).

ResourceType identifies if the resource is a file or folder. Possible values are:

0 A file
1 A folder

Extension is the file extension.

ModifiedTime holds a DateTime string representing the modified date of the resource. This is a combined date-time value (formatted according to RFC 3339).

Size holds the size of the file in bytes. This is only applicable to files.

 
 
Copyright (c) 2019 /n software inc. - All rights reserved.
Cloud Storage Integrator 2016 .NET Edition - Version 16.0 [Build 7239]