2 writes to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
43_nativeResponse = new HTTP_RESPONSE_V2(); 322fixed (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; 297_nativeResponse.Base.EntityChunkCount = checked((ushort)dataChunks.Length); 298_nativeResponse.Base.pEntityChunks = chunks; 302_nativeResponse.Base.EntityChunkCount = asyncResult.DataChunkCount; 303_nativeResponse.Base.pEntityChunks = asyncResult.DataChunks; 307_nativeResponse.Base.EntityChunkCount = 0; 308_nativeResponse.Base.pEntityChunks = null; 319_nativeResponse.Base.ReasonLength = checked((ushort)pReasonPhraseLength); 320_nativeResponse.Base.pReason = (PCSTR)pReasonPhrase; 522fixed (__HTTP_KNOWN_HEADER_30* pKnownHeaders = &_nativeResponse.Base.Headers.KnownHeaders) 540_nativeResponse.Base.Headers.pUnknownHeaders = unknownAlloc; 547unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].NameLength = checked((ushort)bytesLength); 548unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pName = (PCSTR)bytes; 553unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].RawValueLength = checked((ushort)bytesLength); 554unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pRawValue = (PCSTR)bytes; 555_nativeResponse.Base.Headers.UnknownHeaderCount++; 571_nativeResponse.pResponseInfo = responseAlloc; 574knownHeaderInfo[_nativeResponse.ResponseInfoCount].Type = HTTP_RESPONSE_INFO_TYPE.HttpResponseInfoTypeMultipleKnownHeaders; 575knownHeaderInfo[_nativeResponse.ResponseInfoCount].Length = (uint)sizeof(HTTP_MULTIPLE_KNOWN_HEADERS); 597knownHeaderInfo[_nativeResponse.ResponseInfoCount].pInfo = header; 599_nativeResponse.ResponseInfoCount++;