OutputLine
Namespace: Dotsider.Core.Analysis.Models
Assembly: Dotsider.Core.dll
A line of output captured from the traced process’s stdout or stderr.
public sealed record OutputLine : IEquatable<OutputLine>Inheritance
Section titled “Inheritance”Object → OutputLine
Implements
Section titled “Implements”Constructors
Section titled “Constructors”OutputLine(TimeSpan, bool, string)
Section titled “OutputLine(TimeSpan, bool, string)”A line of output captured from the traced process’s stdout or stderr.
Parameters:
Timestamp(TimeSpan): Elapsed time since the trace started.IsStdErr(Boolean): Whether the line came from stderr rather than stdout.Text(String): The captured text content.
public OutputLine(TimeSpan Timestamp, bool IsStdErr, string Text)Properties
Section titled “Properties”IsStdErr
Section titled “IsStdErr”Whether the line came from stderr rather than stdout.
Returns: Boolean
public bool IsStdErr { get; init; }The captured text content.
Returns: String
public string Text { get; init; }Timestamp
Section titled “Timestamp”Elapsed time since the trace started.
Returns: TimeSpan
public TimeSpan Timestamp { get; init; }