FtpEventArgs
Namespace: PPJ.Runtime.Internet
Assembly: PPJ.Runtime.50 (5.0.0.0)
Carries an Internet client status notification and cancellation request.
- C#
- VB.NET
public class FtpEventArgs
Public Class FtpEventArgs
Example:
using PPJ.Runtime.Internet;
var args = new FtpEventArgs();
args.Status = SalFtpClient.FtpStatus.Connecting;
args.Cancel = false;
Constructors
FtpEventArgs()
Initializes a new instance of FtpEventArgs.
Fields
| Name | Type | Description | Value |
|---|---|---|---|
| Cancel | Boolean | Requests cancellation of a cancellable operation stage. | |
| Empty | FtpEventArgs | Provides a shared, initially empty event-arguments instance. | |
| Status | FtpStatus | Stores the operation stage associated with the notification. |