ParentList Event
This event fires once for each parent returned when calling ListParents.
Syntax
[VB.NET] Public Event OnParentList As OnParentListHandler
[C#] public event OnParentListHandler OnParentList; public delegate void OnParentListHandler(object sender, GoogledriveParentListEventArgs e); class GoogledriveParentListEventArgs : EventArgs { string Id {get;} bool Root {get;} }
Remarks
When calling ListParents this event will fire once for each parent that is returned.
Id specifies the Id of the returned parent.
Root specifies whether the parent is the root folder.