1 write to RawContent
Aspire.Hosting (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
103
RawContent
= rawLogContent,
8 references to RawContent
Aspire.Hosting (8)
src\Shared\ConsoleLogs\LogEntry.cs (8)
26
/// <see cref="
RawContent
"/> with ANSI control sequences removed. This is the plain text the user
29
/// <see cref="
RawContent
"/> still contains the raw escape sequences, so matching against either
39
if (
RawContent
is null)
44
return _strippedRawContent ??= AnsiParser.StripControlSequences(
RawContent
);
48
/// <see cref="
RawContent
"/> with the parsed timestamp and ANSI control sequences removed. This
57
if (
RawContent
is null)
62
_strippedLogContent ??= TimestampParser.TryParseConsoleTimestamp(
RawContent
, out var timestampParseResult)
125
return new(logEntry.Timestamp, logEntry.Content, logEntry.
RawContent
, logEntry.Type);