IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

PrefixList Event

Fires once for each common prefix returned when listing blobs.

Syntax

public event OnPrefixListHandler OnPrefixList;

public delegate void OnPrefixListHandler(object sender, AzureblobPrefixListEventArgs e);

public class AzureblobPrefixListEventArgs : EventArgs {
  public string Prefix { get; }
}
Public Event OnPrefixList As OnPrefixListHandler

Public Delegate Sub OnPrefixListHandler(sender As Object, e As AzureblobPrefixListEventArgs)

Public Class AzureblobPrefixListEventArgs Inherits EventArgs
  Public ReadOnly Property Prefix As String
End Class

Remarks

This event fires once for each common prefix returned when ListBlobs is called when BlobDelimiter is non-empty. Refer to BlobDelimiter for more information.

Prefix is the common prefix.

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