Class RequestTracking
Represents a request tracking record for monitoring HTTP requests.
Inherited Members
Namespace: Innovt.Domain.Tracking
Assembly: Innovt.Domain.dll
Syntax
public class RequestTracking : ValueObject<Guid>
Constructors
| Edit this page View SourceRequestTracking()
Initializes a new instance of the RequestTracking class.
Declaration
public RequestTracking()
Properties
| Edit this page View SourceAction
Gets or sets the action associated with the request.
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
string |
Area
Gets or sets the area associated with the request.
Declaration
public string Area { get; set; }
Property Value
Type | Description |
---|---|
string |
Controller
Gets or sets the controller associated with the request.
Declaration
public string Controller { get; set; }
Property Value
Type | Description |
---|---|
string |
Host
Gets or sets the host associated with the request.
Declaration
public string Host { get; set; }
Property Value
Type | Description |
---|---|
string |
ResponseStatusCode
Gets or sets the HTTP response status code.
Declaration
public int? ResponseStatusCode { get; set; }
Property Value
Type | Description |
---|---|
int? |
UserId
Gets or sets the user ID associated with the request.
Declaration
public string UserId { get; set; }
Property Value
Type | Description |
---|---|
string |
Verb
Gets or sets the HTTP verb used in the request.
Declaration
public string Verb { get; set; }
Property Value
Type | Description |
---|---|
string |