IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

PartList Event

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

Syntax

public event OnPartListHandler OnPartList;

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

public class IbmstoragePartListEventArgs : EventArgs {
  public int PartNumber { get; }
  public string ObjectName { get; }
  public string LastModified { get; }
  public long Size { get; }
  public string ETag { get; }
  public string OwnerId { get; }
  public string OwnerName { get; }
}
Public Event OnPartList As OnPartListHandler

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

Public Class IbmstoragePartListEventArgs Inherits EventArgs
  Public ReadOnly Property PartNumber As Integer
  Public ReadOnly Property ObjectName As String
  Public ReadOnly Property LastModified As String
  Public ReadOnly Property Size As Long
  Public ReadOnly Property ETag As String
  Public ReadOnly Property OwnerId As String
  Public ReadOnly Property OwnerName As String
End Class

Remarks

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

PartNumber reflects the part's number.

ObjectName reflects the name of the object the multipart upload is for.

LastModified reflects the last modified time of the part.

Size reflects the size, in bytes, of the part.

ETag reflects the part's ETag of the part.

OwnerId and OwnerName reflect the Id and display name of the part's owner, respectively.

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