Base:
property
ServicePoint
System.Net.PooledStream.ServicePoint
24 references to ServicePoint
System (24)
net\System\Net\_Connection.cs (21)
641
if (m_RecycleTimer.Duration !=
ServicePoint
.ConnectionLeaseTimerQueue.Duration) {
643
m_RecycleTimer =
ServicePoint
.ConnectionLeaseTimerQueue.CreateTimer();
848
if (
ServicePoint
.MaxIdleTime != -1 &&
851
TimeSpan.FromMilliseconds(
ServicePoint
.MaxIdleTime) <
1074
ServicePoint
.InternalProxyServicePoint)
1076
if(!TunnelThroughProxy(
ServicePoint
.InternalAddress, httpWebRequest,async)) {
1164
ServicePoint
,
2147
if (
ServicePoint
.HttpBehaviour==HttpBehaviour.Unknown ||
ServicePoint
.HttpBehaviour==HttpBehaviour.HTTP11 && !m_ResponseData.m_IsVersionHttp11) {
2150
ServicePoint
.HttpBehaviour = m_ResponseData.m_IsVersionHttp11 ? HttpBehaviour.HTTP11 : HttpBehaviour.HTTP10;
2155
m_CanPipeline =
ServicePoint
.SupportsPipelining;
2302
(
ServicePoint
.InternalProxyServicePoint) ||
2318
if ((haveClose &&
ServicePoint
.HttpBehaviour==HttpBehaviour.HTTP11) ||
2319
(!haveKeepAlive &&
ServicePoint
.HttpBehaviour<=HttpBehaviour.HTTP10))
2710
if (
ServicePoint
.HttpBehaviour == HttpBehaviour.HTTP11
2715
ServicePoint
.HttpBehaviour = HttpBehaviour.HTTP11PartiallyCompliant;
2728
if (!
ServicePoint
.Understands100Continue) {
2732
GlobalLog.Print("Connection#" + ValidationHelper.HashString(this) + "::ParseResponseData() HttpWebRequest#" + ValidationHelper.HashString(m_CurrentRequest) + " ServicePoint#" + ValidationHelper.HashString(
ServicePoint
) + " sent UNexpected 100 Continue");
2733
ServicePoint
.Understands100Continue = true;
3855
ServicePoint
.IncrementConnection();
3872
ServicePoint
.DecrementConnection();
net\System\Net\HttpWebResponse.cs (1)
464
connectStream.Connection.
ServicePoint
.CloseConnectionGroup(ConnectionGroupName);
net\System\Net\WebSockets\WebSocketConnectionStream.cs (2)
183
Contract.Assert(this.m_ConnectStream.Connection.
ServicePoint
!= null, "connection.ServicePoint should not be null.");
184
this.m_ConnectStream.Connection.
ServicePoint
.CloseConnectionGroup(this.m_ConnectionGroupName);