2 implementations of StringReadDone
Microsoft.Build (2)
Logging\BinaryLogger\BinaryLogReplayEventSource.cs (1)
321event Action<StringReadEventArgs>? IBuildEventArgsReaderNotifications.StringReadDone
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
144public event Action<StringReadEventArgs>? StringReadDone;
6 references to StringReadDone
Microsoft.Build (6)
Logging\BinaryLogger\BinaryLogger.cs (1)
262replayEventSource.StringReadDone += strArg => eventArgsWriter.WriteStringRecord(strArg.StringToBeUsed);
Logging\BinaryLogger\BinaryLogReplayEventSource.cs (1)
320/// <inheritdoc cref="IBuildEventArgsReaderNotifications.StringReadDone"/>
Logging\BinaryLogger\BuildEventArgsReader.cs (1)
143/// <inheritdoc cref="IBuildEventArgsReaderNotifications.StringReadDone"/>
Logging\BinaryLogger\Postprocessing\ArchiveFileEventArgsExtensions.cs (1)
11/// Helper method that allows to subscribe to <see cref="IBuildEventArgsReaderNotifications.ArchiveFileEncountered"/> event via <see cref="IBuildEventArgsReaderNotifications.StringReadDone"/> event handler.
Logging\BinaryLogger\Postprocessing\IBuildEventArgsReaderNotifications.cs (1)
23/// it can simplify subscribing to this event, by using handler with same signature as handler for <see cref="IBuildEventArgsReaderNotifications.StringReadDone"/> and wrapping it via
Logging\BinaryLogger\Postprocessing\StringReadEventArgs.cs (1)
9/// An event args for <see cref="IBuildEventArgsReaderNotifications.StringReadDone"/> callback.