8 overrides of Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
264public override void Write(object value)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Buffers\ViewBufferTextWriter.cs (1)
103public override void Write(object value)
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
570public override void Write(object? value)
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
153public override void Write(object? value)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
1047public override void Write(object? value) { }
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
223public override void Write(object? value)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
717public override void Write(object? value) { } 848public override void Write(object? value) => _out.Write(value);
16 references to Write
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.CodeDom\Compiler\IndentTextWriter.cs (1)
267_writer.Write(value);
Microsoft.AspNetCore.Mvc.TagHelpers.Test (2)
PartialTagHelperTest.cs (2)
241v.Writer.Write(v.ViewData["key"]); 285v.Writer.Write(v.ViewData["key"]);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
ViewComponents\HtmlContentViewComponentResult.cs (1)
42context.Writer.Write(EncodedContent);
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (3)
Buffers\ViewBufferTextWriterTest.cs (2)
26writer.Write(new TestClass()); 50writer.Write(new TestClass());
DefaultEditorTemplatesTest.cs (1)
121writer.Write((object)null);
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
574_internalWriter.Write(value);
Microsoft.CodeAnalysis.CSharp (1)
Compiler\DocumentationCommentCompiler.IncludeElementExpander.cs (1)
131writer.Write(node);
Microsoft.CodeAnalysis.VisualBasic (1)
Compilation\DocumentationComments\DocumentationCommentCompiler.Includes.vb (1)
199writer.Write(node)
Microsoft.Extensions.Logging.Console (2)
SimpleConsoleFormatter.cs (1)
218state.Write(scope);
SystemdConsoleFormatter.cs (1)
142state.Write(scope);
System.Console (1)
System\Console.cs (1)
969Out.Write(value);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\CodeDom\Compiler\IndentedTextWriter.cs (1)
156_writer.Write(value);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
227writer.Write(value);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
848public override void Write(object? value) => _out.Write(value);