Table of Contents

Configuring HttpClientHandler

You can provide your own HttpClientHandler thanks to this option:

// direct configuration
options => options.WithHttpClientHandler(YourOwnHttpClientHandler)

// OR factory configuration
options => options.WithHttpClientHandler(serviceProvider => YourOwnHttpClientHandler)