SecureBlackbox 2020 .NET Edition

Questions / Feedback?

FindClose Event

Signals the completion of a directory listing request.

Syntax

public event OnFindCloseHandler OnFindClose;

public delegate void OnFindCloseHandler(object sender, FtpserverFindCloseEventArgs e);

public class FtpserverFindCloseEventArgs : EventArgs {
  public long ConnectionID { get; }
  public int OperationStatus { get; set; }
}
Public Event OnFindClose As OnFindCloseHandler

Public Delegate Sub OnFindCloseHandler(sender As Object, e As FtpserverFindCloseEventArgs)

Public Class FtpserverFindCloseEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionID As Long
  Public Property OperationStatus As Integer
End Class

Remarks

The component fires this event upon completion of a directory listing request. Check the operation status, and alter it, if needed, through the OperationStatus parameter.

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