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); 554stream = 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); 539if (AdditionalFilePaths != null && AdditionalFilePaths.Count > 0 && stream != null) 547if (stream != null) 551stream.WriteByte((byte)BinaryLogRecordKind.EndOfFile); 552stream.Flush(); 553stream.Dispose(); 601if (stream != null)