1 write to RawContent
Aspire.Hosting (1)
src\Shared\ConsoleLogs\LogEntry.cs (1)
103RawContent = 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 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);