ServicePoint.SupportsPipelining Property
.NET Framework 4.5
Indicates whether the ServicePoint object supports pipelined connections.
Namespace: System.Net
Assembly: System (in System.dll)
Property Value
Type: System.Booleantrue if the ServicePoint object supports pipelined connections; otherwise, false.
The following code example displays the value of this property.
If sp.Certificate Is Nothing Then Console.WriteLine("Certificate = (null)") Else Console.WriteLine(("Certificate = " + sp.Certificate.ToString())) End If If sp.ClientCertificate Is Nothing Then Console.WriteLine("ClientCertificate = (null)") Else Console.WriteLine(("ClientCertificate = " + sp.ClientCertificate.ToString())) End If Console.WriteLine("ProtocolVersion = " + sp.ProtocolVersion.ToString()) Console.WriteLine(("SupportsPipelining = " + sp.SupportsPipelining.ToString()))
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.