Skip to content

ServicePoint not used in .NET Core #22492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/framework/network-programming/managing-connections.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Managing Connections"
description: Learn how applications that use HTTP for data resources can use the .NET Framework ServicePoint and ServicePointManager classes to manage connections.
ms.date: "03/30/2017"
ms.date: 01/25/2021
dev_langs:
- "csharp"
- "vb"
Expand All @@ -22,6 +22,9 @@ ms.assetid: 9b3d3de7-189f-4f7d-81ae-9c29c441aaaa
# Managing Connections

Applications that use HTTP to connect to data resources can use the .NET Framework's <xref:System.Net.ServicePoint> and <xref:System.Net.ServicePointManager> classes to manage connections to the Internet and to help them achieve optimum scale and performance.

> [!NOTE]
> `ServicePoint` and `ServicePointManager` are considered legacy on .NET Core, .NET 5, and later versions. Most of their properties and methods are not implemented in these versions. When they are implemented, they don't affect or track anything about `HttpClient` networking APIs.

The **ServicePoint** class provides an application with an endpoint to which the application can connect to access Internet resources. Each **ServicePoint** contains information that helps optimize connections with an Internet server by sharing optimization information between connections to improve performance.

Expand Down