2 writes to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
43_nativeResponse = new HTTP_RESPONSE_V2(); 340fixed (HTTP_RESPONSE_V2* pResponse = &_nativeResponse)
25 references to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (25)
RequestProcessing\Response.cs (25)
48_nativeResponse.Base.StatusCode = (ushort)StatusCodes.Status200OK; 49_nativeResponse.Base.Version.MajorVersion = 1; 50_nativeResponse.Base.Version.MinorVersion = 1; 72get { return _nativeResponse.Base.StatusCode; } 81_nativeResponse.Base.StatusCode = (ushort)value; 315_nativeResponse.Base.EntityChunkCount = checked((ushort)dataChunks.Length); 316_nativeResponse.Base.pEntityChunks = chunks; 320_nativeResponse.Base.EntityChunkCount = asyncResult.DataChunkCount; 321_nativeResponse.Base.pEntityChunks = asyncResult.DataChunks; 325_nativeResponse.Base.EntityChunkCount = 0; 326_nativeResponse.Base.pEntityChunks = null; 337_nativeResponse.Base.ReasonLength = checked((ushort)pReasonPhraseLength); 338_nativeResponse.Base.pReason = (PCSTR)pReasonPhrase; 540fixed (__HTTP_KNOWN_HEADER_30* pKnownHeaders = &_nativeResponse.Base.Headers.KnownHeaders) 558_nativeResponse.Base.Headers.pUnknownHeaders = unknownAlloc; 565unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].NameLength = checked((ushort)bytesLength); 566unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pName = (PCSTR)bytes; 571unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].RawValueLength = checked((ushort)bytesLength); 572unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pRawValue = (PCSTR)bytes; 573_nativeResponse.Base.Headers.UnknownHeaderCount++; 589_nativeResponse.pResponseInfo = responseAlloc; 592knownHeaderInfo[_nativeResponse.ResponseInfoCount].Type = HTTP_RESPONSE_INFO_TYPE.HttpResponseInfoTypeMultipleKnownHeaders; 593knownHeaderInfo[_nativeResponse.ResponseInfoCount].Length = (uint)sizeof(HTTP_MULTIPLE_KNOWN_HEADERS); 615knownHeaderInfo[_nativeResponse.ResponseInfoCount].pInfo = header; 617_nativeResponse.ResponseInfoCount++;