98 writes to Version
HttpStress (11)
Program.cs (11)
122using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri + path) { Version = httpVersion })
174using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri) { Version = httpVersion })
203using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri + "/headers") { Version = httpVersion })
215using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri) { Version = httpVersion })
243using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion, Content = new StringDuplexContent(content) })
257using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri + "/duplex") { Version = httpVersion, Content = new StringDuplexContent(content) })
271using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri + "/duplexSlow") { Version = httpVersion, Content = new ByteAtATimeNoLengthContent(Encoding.ASCII.GetBytes(content)) })
285using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion, Content = new StringContent(content) })
302using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion, Content = new StringContent(content) })
325using (var req = new HttpRequestMessage(HttpMethod.Head, serverUri) { Version = httpVersion })
347using (var req = new HttpRequestMessage(HttpMethod.Put, serverUri) { Version = httpVersion, Content = new StringContent(content) })
IIS.FunctionalTests (1)
InMemory.FunctionalTests (7)
KestrelMetricsTests.cs (5)
570Version = new Version(2, 0),
649Version = new Version(2, 0),
727Version = new Version(2, 0),
808Version = new Version(2, 0),
896Version = new Version(2, 0),
Interop.FunctionalTests (46)
Microsoft.AspNetCore.Authentication.OAuth (1)
Microsoft.AspNetCore.Authentication.OpenIdConnect (3)
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (5)
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Tests (2)
Microsoft.AspNetCore.TestHost.Tests (8)
Microsoft.Extensions.Http.Resilience (1)
Microsoft.Extensions.Http.Resilience.Tests (1)
Negotiate.Client (3)
ServerComparison.FunctionalTests (4)
System.Net.Http (2)
System.Net.Requests (1)
System.Net.WebSockets.Client (2)
33 references to Version
Microsoft.AspNetCore.TestHost (3)
Microsoft.Extensions.Http.Resilience (1)
Microsoft.Extensions.Http.Resilience.Tests (2)
System.Net.Http (25)
System.Net.WebSockets.Client (2)