3 implementations of Consume
Microsoft.Build (2)
BackEnd\Components\Logging\BuildEventArgTransportSink.cs (1)
136public void Consume(BuildEventArgs buildEvent, int sinkId)
BackEnd\Components\Logging\EventSourceSink.cs (1)
222public void Consume(BuildEventArgs buildEvent, int sinkId)
Microsoft.Build.Engine.UnitTests (1)
TerminalLogger_Tests.cs (1)
33void IBuildEventSink.Consume(BuildEventArgs buildEvent, int sinkId) => (this as IBuildEventSink).Consume(buildEvent);
4 references to Consume
Microsoft.Build (4)
BackEnd\Components\Logging\EventRedirectorToSink.cs (1)
55_sink.Consume(buildEvent, _centralLoggerId);
BackEnd\Components\Logging\LoggingService.cs (3)
1722sink.Consume(nodeEvent.Value, nodeEvent.Key); 1758sink.Consume(eventArg, pair.Key); 1776sink.Consume(eventArg, (int)pair.Key);