Show / Hide Table of Contents

Class NetworkRequest

A network request record, which is used to store the information of a network request initiated by the browser.

Inheritance
Object
NetworkRequest
Namespace: AxaFrance.WebEngine
Assembly: AxaFrance.WebEngine.dll
Syntax
[Serializable]
public class NetworkRequest

Properties

| Edit this page View Source

Duration

The duration of the network request.

Declaration
public TimeSpan? Duration { get; }
Property Value
Type Description
Nullable<TimeSpan>
| Edit this page View Source

IsCached

If the request is cached (to ignore the calculation of downloaded size)

Declaration
public bool IsCached { get; set; }
Property Value
Type Description
Boolean
| Edit this page View Source

Method

The http method of the network request.

Declaration
public string Method { get; set; }
Property Value
Type Description
String
| Edit this page View Source

Received

The date and time when the response was received from server

Declaration
public DateTime? Received { get; set; }
Property Value
Type Description
Nullable<DateTime>
| Edit this page View Source

Reponse

The size of the response.

Declaration
public long Reponse { get; set; }
Property Value
Type Description
Int64
| Edit this page View Source

Request

The size of the request.

Declaration
public long Request { get; set; }
Property Value
Type Description
Int64
| Edit this page View Source

RequestId

The request id of the network request.

Declaration
public string RequestId { get; set; }
Property Value
Type Description
String
| Edit this page View Source

ResourceType

The type of the resource.

Declaration
public string ResourceType { get; set; }
Property Value
Type Description
String
| Edit this page View Source

Sent

The date and time when the request was sent to server

Declaration
public DateTime? Sent { get; set; }
Property Value
Type Description
Nullable<DateTime>
| Edit this page View Source

StatusCode

The status code of the network request.

Declaration
public long StatusCode { get; set; }
Property Value
Type Description
Int64
| Edit this page View Source

TimeStamp

The time stamp of the network request.

Declaration
public long TimeStamp { get; set; }
Property Value
Type Description
Int64
| Edit this page View Source

Url

The url of the network request.

Declaration
public string Url { get; set; }
Property Value
Type Description
String
  • Edit this page
  • View Source
In this article
Back to top Copyright ® 2016-2024 AXA France, All rights reserved.