Search Results for

    Show / Hide Table of Contents

    Configuring HttpClientHandler

    You can provide your own HttpClientHandler thanks to this option:

    • Static
    • Extended
    // direct configuration
    options => options.WithHttpClientHandler(YourOwnHttpClientHandler)
    
    // OR factory configuration
    options => options.WithHttpClientHandler(() => YourOwnHttpClientHandler)
    
    // direct configuration
    options => options.WithHttpClientHandler(YourOwnHttpClientHandler)
    
    // OR factory configuration
    options => options.WithHttpClientHandler(serviceProvider => YourOwnHttpClientHandler)
    
    In This Article
    Back to top Supported by Respawnsive