IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

BucketList Event

Fires once for each bucket returned when listing buckets.

Syntax

public event OnBucketListHandler OnBucketList;

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

public class Backblazeb2BucketListEventArgs : EventArgs {
  public string Id { get; }
  public string Name { get; }
  public string Kind { get; }
  public long Revision { get; }
}
Public Event OnBucketList As OnBucketListHandler

Public Delegate Sub OnBucketListHandler(sender As Object, e As Backblazeb2BucketListEventArgs)

Public Class Backblazeb2BucketListEventArgs Inherits EventArgs
  Public ReadOnly Property Id As String
  Public ReadOnly Property Name As String
  Public ReadOnly Property Kind As String
  Public ReadOnly Property Revision As Long
End Class

Remarks

This event fires once for each bucket returned when ListBuckets is called.

Id reflects the unique Id of the bucket.

Name reflects the name of the bucket.

Kind reflects the bucket's kind. Possible values are allPublic, allPrivate, or snapshot.

Revision reflects the bucket's revision number. A bucket's revision number is updated every time the bucket is modified.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 .NET Edition - Version 20.0 [Build 8265]