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