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)
247if (_filestream != null) { 248_filestream.Close(); 260if (_filestream == null) 263_filestream.Write(data, offset, length); 267if (_filestream == null) 270_filestream.Flush(); 271_filestream.Seek(0, SeekOrigin.Begin); 275if (_filestream == null) 278_filestream.Seek(offset, SeekOrigin.Begin); 279return _filestream.Read(buffer, bufferOffset, length);