Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Class HttpRequestDetail

    Represents detailed information about an HTTP request, including its identifier, URL, method, headers, request content, response content, and response status code.

    Inheritance
    object
    HttpRequestDetail
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Innovt.Core.Http
    Assembly: Innovt.Core.dll
    Syntax
    public class HttpRequestDetail

    Constructors

    | Edit this page View Source

    HttpRequestDetail()

    Initializes a new instance of the HttpRequestDetail class with a unique identifier.

    Declaration
    public HttpRequestDetail()

    Properties

    | Edit this page View Source

    Header

    Gets or sets the collection of headers associated with the HTTP request.

    Declaration
    public NameValueCollection Header { get; set; }
    Property Value
    Type Description
    NameValueCollection
    | Edit this page View Source

    Id

    Gets or sets the unique identifier for the HTTP request detail.

    Declaration
    public Guid Id { get; set; }
    Property Value
    Type Description
    Guid
    | Edit this page View Source

    Method

    Gets or sets the HTTP method used in the request (e.g., GET, POST, PUT).

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

    RawRequest

    Gets or sets the raw content of the HTTP request.

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

    RawResponse

    Gets or sets the raw content of the HTTP response.

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

    ResponseStatusCode

    Gets or sets the HTTP status code of the response.

    Declaration
    public HttpStatusCode ResponseStatusCode { get; set; }
    Property Value
    Type Description
    HttpStatusCode
    | Edit this page View Source

    Url

    Gets or sets the URL of the HTTP request.

    Declaration
    public string Url { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX