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

BucketList Event

Fired for every bucket when ListBuckets is called.

Syntax

[VB.NET]
Public Event OnBucketList As OnBucketListHandler
[C#]
public event OnBucketListHandler OnBucketList;

public delegate void OnBucketListHandler(object sender, WasabiBucketListEventArgs e);

class WasabiBucketListEventArgs : EventArgs {
  string BucketName {get;}
  string CreationDate {get;}
  string OwnerId {get;}
  string OwnerName {get;}
  string OtherData {get;}
}

Remarks

This event is fired for each bucket when ListBuckets is invoked. It allows you to inspect properties of a bucket like its name, creation date, owner id and owner name. "Other Data" is reserved for future use.

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