2 writes to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\Response.cs (2)
42_nativeResponse = new HTTP_RESPONSE_V2(); 324fixed (HTTP_RESPONSE_V2* pResponse = &_nativeResponse)
25 references to _nativeResponse
Microsoft.AspNetCore.Server.HttpSys (25)
RequestProcessing\Response.cs (25)
47_nativeResponse.Base.StatusCode = (ushort)StatusCodes.Status200OK; 48_nativeResponse.Base.Version.MajorVersion = 1; 49_nativeResponse.Base.Version.MinorVersion = 1; 71get { return _nativeResponse.Base.StatusCode; } 80_nativeResponse.Base.StatusCode = (ushort)value; 299_nativeResponse.Base.EntityChunkCount = checked((ushort)dataChunks.Length); 300_nativeResponse.Base.pEntityChunks = chunks; 304_nativeResponse.Base.EntityChunkCount = asyncResult.DataChunkCount; 305_nativeResponse.Base.pEntityChunks = asyncResult.DataChunks; 309_nativeResponse.Base.EntityChunkCount = 0; 310_nativeResponse.Base.pEntityChunks = null; 321_nativeResponse.Base.ReasonLength = checked((ushort)pReasonPhraseLength); 322_nativeResponse.Base.pReason = (PCSTR)pReasonPhrase; 524fixed (__HTTP_KNOWN_HEADER_30* pKnownHeaders = &_nativeResponse.Base.Headers.KnownHeaders) 542_nativeResponse.Base.Headers.pUnknownHeaders = unknownAlloc; 549unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].NameLength = checked((ushort)bytesLength); 550unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pName = (PCSTR)bytes; 555unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].RawValueLength = checked((ushort)bytesLength); 556unknownHeaders[_nativeResponse.Base.Headers.UnknownHeaderCount].pRawValue = (PCSTR)bytes; 557_nativeResponse.Base.Headers.UnknownHeaderCount++; 573_nativeResponse.pResponseInfo = responseAlloc; 576knownHeaderInfo[_nativeResponse.ResponseInfoCount].Type = HTTP_RESPONSE_INFO_TYPE.HttpResponseInfoTypeMultipleKnownHeaders; 577knownHeaderInfo[_nativeResponse.ResponseInfoCount].Length = (uint)sizeof(HTTP_MULTIPLE_KNOWN_HEADERS); 599knownHeaderInfo[_nativeResponse.ResponseInfoCount].pInfo = header; 601_nativeResponse.ResponseInfoCount++;