The HttpClientFactory manages scope and lifetime of HTTPClient instances in your application. It also works with the DI Container for managing custom classes that encapsulate the HTTPClient instances.
- [Instructor] The IHttpClientFactory…provides a central location…for configuration and naming of HttpClient instances.…It manages the lifetime and disposal of HttpClient instances…and it supports registration and chaining of handlers.…It also provides support for Polly-based handlers…and generated clients…and it adds logging via the standard…ASP.NET Core ILogger interface.…
The IHttpClientFactory manages the pooling…and lifetime of HttpMessageHandlers…which reduces resource consumption…when using the HttpClient.…It sets a default timeout to two minutes…and it handles disposing of HttpClient instances…and all of their owned resources.…There are four basic consumption patterns,…the basic usage, named clients, typed clients,…and generated clients,…and we will examine all of these in the code samples.…
The basic usage is helpful…when you don't want to refactor an existing code base.…It starts off by adding services.AddHttpClient…into the ConfigureServices…and then you're consuming code,…takes an instance of the IHttpClientFactory…
Author
Released
1/24/2019- Running and debugging ASP.NET Core applications
- Pros and cons of migrating existing applications to ASP.NET Core.
- Built-in dependency injection
- Environment awareness and app configuration
- Web host configuration and SSL
- View components invoked as tag helpers
- Configuration and logging
- Using Razor Pages
- Web API improvements
- Support for creating GDPR-compliant applications
Skill Level Intermediate
Duration
Views
Related Courses
-
Introduction
-
Use the exercise files3m 37s
-
1. Get to Know .NET Core
-
Introducing .NET Core5m 26s
-
.NET Core goals8m 59s
-
.NET Core support cycles2m 2s
-
Migration considerations2m 42s
-
-
2. ASP.NET Core 1.0
-
Project structure changes2m 23s
-
.NET Core project files2m 25s
-
Bundling and minification5m 17s
-
Web host configuration and SSL13m 26s
-
Application startup4m 42s
-
Logging1m 45s
-
Controllers and actions2m 3s
-
Tag Helpers12m 33s
-
View components4m 28s
-
3. ASP.NET Core 1.1
-
Introducing ASP.NET Core 1.11m 48s
-
Azure App Service logging1m 14s
-
View compilation1m 50s
-
Middleware and URL rewriting8m 36s
-
Middleware as MVC filters2m 54s
-
WebSocket support2m 18s
-
-
4. ASP.NET Core 2.0
-
Introducing ASP.NET Core 2.08m 42s
-
Containerization with Docker11m 24s
-
WebHostBuilder updates4m 8s
-
Configuration and logging4m 26s
-
HTTP.sys3m 6s
-
Rewriting middleware updates1m 38s
-
Kestrel, Docker, and SSL13m 24s
-
Razor pages5m 22s
-
-
5. ASP.NET Core 2.1
-
Introducing ASP.NET Core 2.13m 35s
-
ASP.NET Core SignalR5m 21s
-
Web API improvements4m 33s
-
GDPR4m 53s
-
HttpClientFactory5m 53s
-
-
Conclusion
-
Thank you26s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: HttpClientFactory