2 overrides of Stream
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.CompilerEmitStreamProvider.cs (1)
48public override Stream? Stream => null;
Compilation.EmitStreamProvider.cs (1)
60public override Stream Stream => _stream;
4 references to Stream
Microsoft.CodeAnalysis (4)
Compilation.EmitStreamProvider.cs (4)
23/// Abstraction that allows the caller to delay the creation of the <see cref="Stream"/> values 36/// user errors in code. Shall not be called when <see cref="Stream"/> returns non-null. 41/// Returns a <see cref="Stream"/>. If one cannot be gotten or created then a diagnostic will 46return Stream ?? CreateStream(diagnostics);