SecureBlackbox 2020 .NET Edition

Questions / Feedback?

ListEntry Event

Reports a directory listing entry to the application.

Syntax

public event OnListEntryHandler OnListEntry;

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

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

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

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

Remarks

The component fires this event to report a directory listing entry to the application. FileName contains the entry name.

Use CurrentListEntry to access the details of the entry.

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