2 writes to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
43_nativeResponse = new HTTP_RESPONSE_V2(); 325fixed (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; 300_nativeResponse.Base.EntityChunkCount = checked((ushort)dataChunks.Length); 301_nativeResponse.Base.pEntityChunks = chunks; 305_nativeResponse.Base.EntityChunkCount = asyncResult.DataChunkCount; 306_nativeResponse.Base.pEntityChunks = asyncResult.DataChunks; 310_nativeResponse.Base.EntityChunkCount = 0; 311_nativeResponse.Base.pEntityChunks = null; 322_nativeResponse.Base.ReasonLength = checked((ushort)pReasonPhraseLength); 323_nativeResponse.Base.pReason = (PCSTR)pReasonPhrase; 525fixed (__HTTP_KNOWN_HEADER_30* pKnownHeaders = &_nativeResponse.Base.Headers.KnownHeaders) 543_nativeResponse.Base.Headers.pUnknownHeaders = unknownAlloc; 550unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].NameLength = checked((ushort)bytesLength); 551unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pName = (PCSTR)bytes; 556unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].RawValueLength = checked((ushort)bytesLength); 557unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pRawValue = (PCSTR)bytes; 558_nativeResponse.Base.Headers.UnknownHeaderCount++; 574_nativeResponse.pResponseInfo = responseAlloc; 577knownHeaderInfo[_nativeResponse.ResponseInfoCount].Type = HTTP_RESPONSE_INFO_TYPE.HttpResponseInfoTypeMultipleKnownHeaders; 578knownHeaderInfo[_nativeResponse.ResponseInfoCount].Length = (uint)sizeof(HTTP_MULTIPLE_KNOWN_HEADERS); 600knownHeaderInfo[_nativeResponse.ResponseInfoCount].pInfo = header; 602_nativeResponse.ResponseInfoCount++;