Skip to content

Commit b20e6b3

Browse files
authored
PR review edit
1 parent 56a7561 commit b20e6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/develop/msal-net-provide-httpclient.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ms.custom: "devx-track-csharp, aaddev"
2020
# Providing your own HttpClient and proxy using MSAL.NET
2121
When [initializing a client application](msal-net-initializing-client-applications.md), you can use the `.WithHttpClientFactory method` to provide your own HttpClient. Providing your own HttpClient enables advanced scenarios such fine-grained control of an HTTP proxy, customizing user agent headers, or forcing MSAL to use a specific HttpClient (for example in ASP.NET Core web apps/APIs).
2222

23-
`HttpClient` is intended to be instantiated once and re-used throughout the life of an application. See [guidance](https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient?view=net-5.0#remarks).
23+
`HttpClient` is intended to be instantiated once and then reused throughout the life of an application. See [Remarks](/dotnet/api/system.net.http.httpclient?view=net-5.0#remarks).
2424

2525
## Initialize with HttpClientFactory
2626
The following example shows to create an `HttpClientFactory` and then initialize a public client application with it:

0 commit comments

Comments
 (0)