Skip to main content

FtpEventArgs

Namespace: PPJ.Runtime.Internet

Assembly: PPJ.Runtime.50 (5.0.0.0)

Carries an Internet client status notification and cancellation request.

public class FtpEventArgs

Example:

using PPJ.Runtime.Internet;

var args = new FtpEventArgs();
args.Status = SalFtpClient.FtpStatus.Connecting;
args.Cancel = false;

Constructors

Instance member FtpEventArgs()

Initializes a new instance of FtpEventArgs.

Fields

NameTypeDescriptionValue
CancelBooleanRequests cancellation of a cancellable operation stage.
EmptyFtpEventArgsProvides a shared, initially empty event-arguments instance.
StatusFtpStatusStores the operation stage associated with the notification.