Show / Hide Table of Contents

Class OnRequestExecutingEventArgs

Represents a set of containing information about an in-flight HTTP request. This set is passed into the OnRequestExecuting event handler.

Inheritance
System.Object
OnRequestExecutingEventArgs
Namespace: EasyPost
Assembly: EasyPost.dll
Syntax
public class OnRequestExecutingEventArgs : EventArgs

Properties

| Improve this Doc View Source

Headers

The of the HTTP request.

Declaration
public HttpRequestHeaders Headers { get; }
Property Value
Type Description
HttpRequestHeaders
| Improve this Doc View Source

Id

A unique identifier for the HTTP request-response pair.

Declaration
public Guid Id { get; }
Property Value
Type Description
Guid
| Improve this Doc View Source

Method

The of the HTTP request.

Declaration
public HttpMethod Method { get; }
Property Value
Type Description
HttpMethod
| Improve this Doc View Source

RequestBody

The of the HTTP request.

Declaration
public HttpContent? RequestBody { get; }
Property Value
Type Description
System.Nullable<HttpContent>
| Improve this Doc View Source

RequestTimestamp

The timestamp of the HTTP request.

Declaration
public int RequestTimestamp { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Uri

The Uri of the HTTP request.

Declaration
public Uri? Uri { get; }
Property Value
Type Description
System.Nullable<Uri>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX