2 writes to HttpBehaviour
System (2)
net\System\Net\_Connection.cs (2)
2150ServicePoint.HttpBehaviour = m_ResponseData.m_IsVersionHttp11 ? HttpBehaviour.HTTP11 : HttpBehaviour.HTTP10; 2715ServicePoint.HttpBehaviour = HttpBehaviour.HTTP11PartiallyCompliant;
8 references to HttpBehaviour
System (8)
net\System\Net\_Connection.cs (5)
2147if (ServicePoint.HttpBehaviour==HttpBehaviour.Unknown || ServicePoint.HttpBehaviour==HttpBehaviour.HTTP11 && !m_ResponseData.m_IsVersionHttp11) { 2318if ((haveClose && ServicePoint.HttpBehaviour==HttpBehaviour.HTTP11) || 2319(!haveKeepAlive && ServicePoint.HttpBehaviour<=HttpBehaviour.HTTP10)) 2710if (ServicePoint.HttpBehaviour == HttpBehaviour.HTTP11
net\System\Net\HttpWebRequest.cs (3)
1291if (ServicePoint.HttpBehaviour==HttpBehaviour.HTTP11 || ServicePoint.HttpBehaviour==HttpBehaviour.Unknown) { 5064if (IsVersionHttp10 || ServicePoint.HttpBehaviour<=HttpBehaviour.HTTP10) {