1 write to RawContent
aspire (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
103RawContent = rawLogContent,
14 references to RawContent
aspire (14)
Commands\LogsCommand.cs (3)
270Content = entry.Content ?? entry.RawContent ?? string.Empty, 445var content = entry.Content ?? entry.RawContent ?? string.Empty; 486var 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 39if (RawContent is null) 44return _strippedRawContent ??= AnsiParser.StripControlSequences(RawContent); 48/// <see cref="RawContent"/> with the parsed timestamp and ANSI control sequences removed. This 57if (RawContent is null) 62_strippedLogContent ??= TimestampParser.TryParseConsoleTimestamp(RawContent, out var timestampParseResult) 125return new(logEntry.Timestamp, logEntry.Content, logEntry.RawContent, logEntry.Type);
src\Shared\ConsoleLogs\SharedAIHelpers.cs (2)
756if (logEntry.RawContent is not null) 758var content = logEntry.RawContent;