2 writes to _rawContent
System.Web (2)
HttpBufferlessInputStream.cs (2)
51
_rawContent
= new HttpRawUploadedContent(_fileThreshold, _context.Request.ContentLength);
324
_rawContent
= null;
9 references to _rawContent
System.Web (9)
HttpBufferlessInputStream.cs (9)
193
if (
_rawContent
!= null) {
194
_rawContent
.AddBytes(_buffer, _offset, bytesRead);
245
if (
_rawContent
!= null) {
246
_rawContent
.AddBytes(buffer, offset, bytesRead);
280
if (
_rawContent
!= null) {
281
_rawContent
.AddBytes(preloadedContent, (int) _position, bytesRead);
321
if (_persistEntityBody &&
_rawContent
!= null) {
322
_rawContent
.DoneAddingBytes();
323
_context.Request.SetRawContent(
_rawContent
);