HttpEventArgs
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 HttpEventArgs
Public Class HttpEventArgs
Example:
using PPJ.Runtime.Internet;
var args = new HttpEventArgs();
args.Status = SalHttpClient.HttpStatus.Connecting;
args.Cancel = false;
Constructors
HttpEventArgs()
Initializes a new instance of HttpEventArgs.
Fields
| Name | Type | Description | Value |
|---|---|---|---|
| Cancel | Boolean | Requests cancellation of a cancellable operation stage. | |
| Empty | HttpEventArgs | Provides a shared, initially empty event-arguments instance. | |
| Status | HttpStatus | Stores the operation stage associated with the notification. |