SecureBlackbox 2020 .NET Edition

Questions / Feedback?

ListEntry Event

Passes the next directory listing entry to the application.

Syntax

public event OnListEntryHandler OnListEntry;

public delegate void OnListEntryHandler(object sender, WebdavclientListEntryEventArgs e);

public class WebdavclientListEntryEventArgs : EventArgs {
  public string Filename { get; }
}
Public Event OnListEntry As OnListEntryHandler

Public Delegate Sub OnListEntryHandler(sender As Object, e As WebdavclientListEntryEventArgs)

Public Class WebdavclientListEntryEventArgs Inherits EventArgs
  Public ReadOnly Property Filename As String
End Class

Remarks

The component fires this event repeatedly to pass the whole list of directory entries received in response to a ListDir call to the application. For each entry, FileName contains the received directory entry name, and CurrentListEntry populates all the details.

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