Skip to main content

HttpEventArgs

Namespace: PPJ.Runtime.Internet

Assembly: PPJ.Runtime.50 (5.0.0.0)

Carries an Internet client status notification and cancellation request.

public class HttpEventArgs

Example:

using PPJ.Runtime.Internet;

var args = new HttpEventArgs();
args.Status = SalHttpClient.HttpStatus.Connecting;
args.Cancel = false;

Constructors

Instance member HttpEventArgs()

Initializes a new instance of HttpEventArgs.

Fields

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