5 overrides of Write
Microsoft.Build (1)
BackEnd\Node\OutOfProcServerNode.cs (1)
594
public 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)
540
public 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)
255
public 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)
721
public override void
Write
([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) { }
857
public 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)
2569
file.
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)
269
writer.
Write
("({0:00}:{1:00}:{2:00})", elapsed.Hours, elapsed.Minutes, elapsed.Seconds);
System.Console (1)
System\Console.cs (1)
875
Out.
Write
(format, arg0, arg1, arg2);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamWriter.cs (1)
549
base.
Write
(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.CreateBroadcasting.cs (1)
259
writer.
Write
(format, arg0, arg1, arg2);
src\libraries\System.Private.CoreLib\src\System\IO\TextWriter.cs (1)
857
public override void Write([StringSyntax(StringSyntaxAttribute.CompositeFormat)] string format, object? arg0, object? arg1, object? arg2) => _out.
Write
(format, arg0, arg1, arg2);