Class TransactionRecord
Represents a detailed record of an HTTP transaction, including the request, response, and any exception that occurred.
Inherited Members
Namespace: Coree.NETStandard.Classes.HttpRequestService
Assembly: Coree.NETStandard.dll
Syntax
public class TransactionRecord
Constructors
| Edit this page View SourceTransactionRecord(HttpRequestMessage?, HttpResponseMessage?, Exception?)
Initializes a new instance of TransactionRecord with the specified HTTP request and response messages, and an optional exception.
Declaration
public TransactionRecord(HttpRequestMessage? httpRequestMessage, HttpResponseMessage? httpResponseMessage, Exception? lastException = null)
Parameters
Type | Name | Description |
---|---|---|
HttpRequestMessage | httpRequestMessage | The HTTP request message associated with the transaction. |
HttpResponseMessage | httpResponseMessage | The HTTP response message received in response to the request. |
Exception | lastException | The exception, if any, that occurred during the transaction. |
Properties
| Edit this page View SourceHttpRequestMessage
The HTTP request message associated with the transaction.
Declaration
public HttpRequestMessage? HttpRequestMessage { get; set; }
Property Value
Type | Description |
---|---|
HttpRequestMessage |
HttpResponseMessage
The HTTP response message received for the transaction.
Declaration
public HttpResponseMessage? HttpResponseMessage { get; set; }
Property Value
Type | Description |
---|---|
HttpResponseMessage |
IsFromCache
Indicates whether the transaction record was retrieved from cache.
Declaration
public bool IsFromCache { get; set; }
Property Value
Type | Description |
---|---|
bool |
LastException
The last exception encountered during the transaction, if any.
Declaration
public Exception? LastException { get; set; }
Property Value
Type | Description |
---|---|
Exception |
ResponseBytes
Retrieves the response as a byte array. Returns null if the response is unavailable or an error occurs during retrieval.
Declaration
public byte[]? ResponseBytes { get; }
Property Value
Type | Description |
---|---|
byte[] |
ResponseString
Retrieves the response as a string, decoding it according to the response's content encoding. Returns null if the response is unavailable or decoding fails.
Declaration
public string? ResponseString { get; }
Property Value
Type | Description |
---|---|
string |
ResponseSuccess
Indicates whether the HTTP response was successful and no exceptions occurred. Returns false if the response, its content, headers are null, or an exception was recorded.
Declaration
public bool ResponseSuccess { get; }
Property Value
Type | Description |
---|---|
bool |