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如果对象是通过使用Uri参数调用FindServicePoint重载构造的Uri,则 ConnectionName 属性表示Scheme所用对象的 属性。

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

适用于

另请参阅