ServicePoint.CurrentConnections 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取与此 ServicePoint 对象关联的打开连接数。
public:
property int CurrentConnections { int get(); };
public int CurrentConnections { get; }
member this.CurrentConnections : int
Public ReadOnly Property CurrentConnections As Integer
属性值
与此 ServicePoint 对象关联的打开连接数。
示例
下面的代码示例使用 CurrentConnections 属性来确定与此 ServicePoint 对象关联的打开 Internet 连接数。
// Display the ServicePoint Internet resource address.
Console::WriteLine( "Address = {0}", sp->Address );
// Display the ServicePoint Internet resource address.
Console.WriteLine("Address = {0} ", sp.Address.ToString());
' Display the ServicePoint Internet resource address.
Console.WriteLine(("Address = " + sp.Address.ToString()))
注解
谨慎
WebRequest
、HttpWebRequest
、ServicePoint
和 WebClient
已过时,不应将其用于新开发。 请改用 HttpClient。
CurrentConnections 属性包含与此 ServicePoint 对象关联的打开 Internet 连接数。 CurrentConnections 的值不能超过 ConnectionLimit的值。