Class LoadingFinishedEventArgs
Fired when HTTP request has finished loading.
public sealed record LoadingFinishedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<LoadingFinishedEventArgs>
- Inheritance
-
EventArgsLoadingFinishedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
LoadingFinishedEventArgs(RequestId, MonotonicTime, double)
Fired when HTTP request has finished loading.
public LoadingFinishedEventArgs(RequestId RequestId, MonotonicTime Timestamp, double EncodedDataLength)
Parameters
RequestIdRequestIdRequest identifier.
TimestampMonotonicTimeTimestamp.
EncodedDataLengthdoubleTotal number of bytes received for this request.
Properties
EncodedDataLength
Total number of bytes received for this request.
public double EncodedDataLength { get; init; }
Property Value
RequestId
Request identifier.
public RequestId RequestId { get; init; }
Property Value
Timestamp
Timestamp.
public MonotonicTime Timestamp { get; init; }