IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

PartList Event

Fires once for each part returned when listing a multipart upload's parts.

Syntax

public event OnPartListHandler OnPartList;

public delegate void OnPartListHandler(object sender, Backblazeb2PartListEventArgs e);

public class Backblazeb2PartListEventArgs : EventArgs {
  public int PartNumber { get; }
  public string MultipartFileId { get; }
  public long Size { get; }
  public long CreatedTime { get; }
  public string SHA1Hash { get; }
}
Public Event OnPartList As OnPartListHandler

Public Delegate Sub OnPartListHandler(sender As Object, e As Backblazeb2PartListEventArgs)

Public Class Backblazeb2PartListEventArgs Inherits EventArgs
  Public ReadOnly Property PartNumber As Integer
  Public ReadOnly Property MultipartFileId As String
  Public ReadOnly Property Size As Long
  Public ReadOnly Property CreatedTime As Long
  Public ReadOnly Property SHA1Hash As String
End Class

Remarks

This event fires once for each part returned when ListParts is called.

PartNumber reflects the part's number.

MultipartFileId reflects the Id of the multipart file upload that the part is a part of.

Size reflects the size of the part, in bytes.

CreatedTime reflects the part's creation time (i.e., upload time), in milliseconds relative to the Unix epoch.

SHA1Hash reflects a hex-encoded SHA1 hash of the part's contents.

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