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

ChangeList Event

This event fires once for each change when ListChanges is called.

Syntax

[VB.NET]
Public Event OnChangeList As OnChangeListHandler
[C#]
public event OnChangeListHandler OnChangeList;

public delegate void OnChangeListHandler(object sender, GoogledriveChangeListEventArgs e);

class GoogledriveChangeListEventArgs : EventArgs {
  string ResourceId {get;}
  bool Removed {get;}
  string Time {get;}
}

Remarks

This event fires once for each change returned when ListChanges is called.

ResourceId is the Id of the file the change applies to.

Removed indicates whether the file has been removed from the view of the change list. For example, if the file was permanently deleted or access to it was revoked, this would return True. (This will still return False when a file is in the trash.)

Time is a DateTime string representing the time of the change. This is a combined date-time value (formatted according to RFC 3339).

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