SecureBlackbox 2020 .NET Edition

Questions / Feedback?

MultipleFilesFound Event

Fires if the PGP message is recognized to contain multiple files.

Syntax

public event OnMultipleFilesFoundHandler OnMultipleFilesFound;

public delegate void OnMultipleFilesFoundHandler(object sender, PgpreaderMultipleFilesFoundEventArgs e);

public class PgpreaderMultipleFilesFoundEventArgs : EventArgs {
  public string TarFilename { get; }
  public bool Proceed { get; set; }
}
Public Event OnMultipleFilesFound As OnMultipleFilesFoundHandler

Public Delegate Sub OnMultipleFilesFoundHandler(sender As Object, e As PgpreaderMultipleFilesFoundEventArgs)

Public Class PgpreaderMultipleFilesFoundEventArgs Inherits EventArgs
  Public ReadOnly Property TarFilename As String
  Public Property Proceed As Boolean
End Class

Remarks

The component fires this event to report that there is more than one file in the PGP message.

The TarFilename specifies the name of the TAR file containing the files. Tune up Proceed to go ahead or stop the processing.

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