4 writes to stream
Microsoft.Build (4)
Logging\BinaryLogger\BinaryLogger.cs (4)
380stream = new FileStream(FilePath, FileMode.Create); 406stream = new GZipStream(stream, CompressionLevel.Optimal); 411stream = new BufferedStream(stream, bufferSize: 32768); 546stream = null;
9 references to stream
Microsoft.Build (9)
Logging\BinaryLogger\BinaryLogger.cs (9)
406stream = new GZipStream(stream, CompressionLevel.Optimal); 411stream = new BufferedStream(stream, bufferSize: 32768); 412binaryWriter = new BinaryWriter(stream); 531if (AdditionalFilePaths != null && AdditionalFilePaths.Count > 0 && stream != null) 539if (stream != null) 543stream.WriteByte((byte)BinaryLogRecordKind.EndOfFile); 544stream.Flush(); 545stream.Dispose(); 593if (stream != null)