2 writes to _versionAndMethod
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\IHttpRequestLineHandler.cs (2)
38_versionAndMethod = ((ulong)(uint)methodEnd << 32) | ((ulong)method << 8); 48set => _versionAndMethod = (_versionAndMethod & ~0xFFul) | (byte)value;
4 references to _versionAndMethod
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http\IHttpRequestLineHandler.cs (4)
47get => (HttpVersion)(sbyte)(byte)_versionAndMethod; 48set => _versionAndMethod = (_versionAndMethod & ~0xFFul) | (byte)value; 55public HttpMethod Method => (HttpMethod)(byte)(_versionAndMethod >> 8); 61public int MethodEnd => (int)(uint)(_versionAndMethod >> 32);