1 write to _filestream
System.Web (1)
HttpInputStream.cs (1)
236
_filestream
= new FileStream(_filename, FileMode.Create, FileAccess.ReadWrite, FileShare.None, 4096, FileOptions.DeleteOnClose);
10 references to _filestream
System.Web (10)
HttpInputStream.cs (10)
247
if (
_filestream
!= null) {
248
_filestream
.Close();
260
if (
_filestream
== null)
263
_filestream
.Write(data, offset, length);
267
if (
_filestream
== null)
270
_filestream
.Flush();
271
_filestream
.Seek(0, SeekOrigin.Begin);
275
if (
_filestream
== null)
278
_filestream
.Seek(offset, SeekOrigin.Begin);
279
return
_filestream
.Read(buffer, bufferOffset, length);