Class HttpReportContext
Inheritance
HttpReportContext
Assembly: Inttegro.dll
Syntax
public sealed record HttpReportContext : IEquatable<HttpReportContext>
Constructors
|
Edit this page
View Source
HttpReportContext(string, string?, string, int?, string?, long)
Declaration
public HttpReportContext(string Method, string? Route, string ServerAddress, int? StatusCode, string? RequestId, long DurationMs)
Parameters
Properties
|
Edit this page
View Source
DurationMs
Declaration
[JsonPropertyName("durationMs")]
public long DurationMs { get; init; }
Property Value
|
Edit this page
View Source
Method
Declaration
[JsonPropertyName("method")]
public string Method { get; init; }
Property Value
|
Edit this page
View Source
RequestId
Declaration
[JsonPropertyName("requestId")]
public string? RequestId { get; init; }
Property Value
|
Edit this page
View Source
Route
Declaration
[JsonPropertyName("route")]
public string? Route { get; init; }
Property Value
|
Edit this page
View Source
ServerAddress
Declaration
[JsonPropertyName("serverAddress")]
public string ServerAddress { get; init; }
Property Value
|
Edit this page
View Source
StatusCode
Declaration
[JsonPropertyName("statusCode")]
public int? StatusCode { get; init; }
Property Value
Implements