4 writes to stream
Microsoft.Build (4)
Logging\BinaryLogger\BinaryLogger.cs (4)
378stream = new FileStream(FilePath, FileMode.Create); 404stream = new GZipStream(stream, CompressionLevel.Optimal); 409stream = new BufferedStream(stream, bufferSize: 32768); 544stream = null;
9 references to stream
Microsoft.Build (9)
Logging\BinaryLogger\BinaryLogger.cs (9)
404stream = new GZipStream(stream, CompressionLevel.Optimal); 409stream = new BufferedStream(stream, bufferSize: 32768); 410binaryWriter = new BinaryWriter(stream); 529if (AdditionalFilePaths != null && AdditionalFilePaths.Count > 0 && stream != null) 537if (stream != null) 541stream.WriteByte((byte)BinaryLogRecordKind.EndOfFile); 542stream.Flush(); 543stream.Dispose(); 591if (stream != null)