IP*Works! 2016 .NET Edition
IP*Works! 2016 .NET Edition
Questions / Feedback?

Status Event

Fired when the HTTP status line is received from the server.

Syntax

[VB.NET]
Public Event OnStatus As OnStatusHandler
[C#]
public event OnStatusHandler OnStatus;

public delegate void OnStatusHandler(object sender, WebuploadStatusEventArgs e);

class WebuploadStatusEventArgs : EventArgs {
  string HTTPVersion {get;}
  int StatusCode {get;}
  string Description {get;}
}

Remarks

HTTPVersion is a string containing the HTTP version string as returned from the server (e.g. "1.1").

StatusCode contains the HTTP status code (e.g. 200), and Description the associated message returned by the server (e.g. "OK").

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 .NET Edition - Version 16.0 [Build 7353]