5 overrides of Write
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
594public override void Write(string format, object? arg0, object? arg1, object? arg2)
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
540public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
255public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2)
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (2)
721public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) { } 857public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.Write(format, arg0, arg1, arg2);
7 references to Write
Microsoft.Build (2)
BackEnd\Components\Scheduler\Scheduler.cs (1)
2569file.Write("{0}({1})-{2}: ", Thread.CurrentThread.Name, Environment.CurrentManagedThreadId, _schedulingData.EventTime.Ticks);
BackEnd\Node\OutOfProcServerNode.cs (1)
598_internalWriter.Write(format, arg0, arg1, arg2);
Microsoft.ML.Core (1)
Environment\ConsoleEnvironment.cs (1)
269writer.Write("({0:00}:{1:00}:{2:00})", elapsed.Hours, elapsed.Minutes, elapsed.Seconds);
System.Console (1)
System\Console.cs (1)
875Out.Write(format, arg0, arg1, arg2);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
549base.Write(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
259writer.Write(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
857public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.Write(format, arg0, arg1, arg2);