Skip to content

Commit cf629f1

Browse files
authored
Update docs/fundamentals/networking/http/httpclient-migrate-from-httpwebrequest.md
1 parent 9aac5ea commit cf629f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/fundamentals/networking/http/httpclient-migrate-from-httpwebrequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ using HttpResponseMessage responseMessage = await client.PostAsync(uri, new Stri
120120
| `UseDefaultCredentials` | No direct equivalent API | [Example: Setting SocketsHttpHandler Properties](#example-set-socketshttphandler-properties). |
121121
| `UserAgent` | <xref:System.Net.Http.Headers.HttpRequestHeaders.UserAgent> | [Example: Set Request Headers](#example-set-common-request-headers). |
122122

123-
## Migrate `ServicePoint`(`Manager`) usage
123+
## Migrate `ServicePointManager` usage
124124

125125
You should be aware that `ServicePointManager` is a static class, meaning that any changes made to its properties will have a global effect on all newly created `ServicePoint` objects within the application. For example, when you modify a property like `ConnectionLimit` or `Expect100Continue`, it impacts every new `ServicePoint` instance.
126126

0 commit comments

Comments
 (0)