4 writes to stream
Microsoft.Build (4)
Logging\BinaryLogger\BinaryLogger.cs (4)
370stream = new FileStream(FilePath, FileMode.Create); 396stream = new GZipStream(stream, CompressionLevel.Optimal); 401stream = new BufferedStream(stream, bufferSize: 32768); 536stream = null;
9 references to stream
Microsoft.Build (9)
Logging\BinaryLogger\BinaryLogger.cs (9)
396stream = new GZipStream(stream, CompressionLevel.Optimal); 401stream = new BufferedStream(stream, bufferSize: 32768); 402binaryWriter = new BinaryWriter(stream); 521if (AdditionalFilePaths != null && AdditionalFilePaths.Count > 0 && stream != null) 529if (stream != null) 533stream.WriteByte((byte)BinaryLogRecordKind.EndOfFile); 534stream.Flush(); 535stream.Dispose(); 583if (stream != null)