ServicePoint.ConnectionName 属性

定义

获取连接名。

public:
 property System::String ^ ConnectionName { System::String ^ get(); };
public string ConnectionName { get; }
member this.ConnectionName : string
Public ReadOnly Property ConnectionName As String

属性值

一个表示连接名的 String

示例

Console::WriteLine( "ConnectionName = {0}", sp->ConnectionName );

// Display the maximum number of connections allowed on this 
// ServicePoint instance.
Console::WriteLine( "ConnectionLimit = {0}", sp->ConnectionLimit );

// Display the number of connections associated with this 
// ServicePoint instance.
Console::WriteLine( "CurrentConnections = {0}", sp->CurrentConnections );
Console.WriteLine("ConnectionName = " + sp.ConnectionName);

// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console.WriteLine("ConnectionLimit = " + sp.ConnectionLimit);

// Display the number of connections associated with this
// ServicePoint instance.
Console.WriteLine("CurrentConnections = " + sp.CurrentConnections);
Console.WriteLine(("ConnectionName = " + sp.ConnectionName))

' Display the maximum number of connections allowed on this 
' ServicePoint instance.
Console.WriteLine(("ConnectionLimit = " + sp.ConnectionLimit.ToString()))

' Display the number of connections associated with this 
' ServicePoint instance.
Console.WriteLine(("CurrentConnections = " + sp.CurrentConnections.ToString()))

注解

如果对象 ServicePoint 是通过使用 参数调用 FindServicePoint 重载构造的 Uri ,则 ConnectionName 属性表示 Scheme 所使用的对象的 属性 Uri

ServicePoint如果 对象是从网络主机和端口构造的,则 ConnectionName 属性包含表示主机和网络端口的字符串。 ConnectionName如果在从主机和端口构造时设置了 属性,则只有WebRequest具有相同ConnectionGroupName值的对象才能使用此ServicePoint对象。

适用于

另请参阅