Show / Hide Table of Contents

Class Hooks

Class representing a set of callbacks to use for introspecting API requests made by an EasyPostClient.

Inheritance
System.Object
Hooks
Namespace: EasyPost
Assembly: EasyPost.dll
Syntax
public class Hooks : object

Properties

| Improve this Doc View Source

OnRequestExecuting

An to view an HTTP request by the client prior to being sent. Editing the in this callback does not impact the being executed.

Declaration
public EventHandler<OnRequestExecutingEventArgs>? OnRequestExecuting { get; set; }
Property Value
Type Description
System.Nullable<EventHandler<OnRequestExecutingEventArgs>>
| Improve this Doc View Source

OnRequestResponseReceived

An to view an HTTP response received by the client.

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