1 write to RawContent
aspire (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
103
RawContent
= rawLogContent,
14 references to RawContent
aspire (14)
Commands\LogsCommand.cs (3)
270
Content = entry.Content ?? entry.
RawContent
?? string.Empty,
445
var content = entry.Content ?? entry.
RawContent
?? string.Empty;
486
var content = entry.
RawContent
?? entry.Content ?? string.Empty;
Mcp\Tools\ListConsoleLogsTool.cs (1)
105
(e.Content ?? string.Empty, e.
RawContent
?? string.Empty, e.ResourcePrefix ?? string.Empty),
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);
src\Shared\ConsoleLogs\SharedAIHelpers.cs (2)
756
if (logEntry.
RawContent
is not null)
758
var content = logEntry.
RawContent
;