ServicePoint::ConnectionName Property
.NET Framework (current version)
Gets the connection name.
Assembly: System (in System.dll)
If the ServicePoint object was constructed with a Uri object (the FindServicePoint or FindServicePoint methods, for example), then the ConnectionName property represents the Scheme property of the Uri object used.
If the ServicePoint object was constructed from a network host and port, the ConnectionName property contains a string that represents the host and the network port. If the ConnectionName property is set when constructed from a host and port, only WebRequest objects with the same ConnectionGroupName value can use this ServicePoint object.
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 );
.NET Framework
Available since 1.1
Available since 1.1
Show: