-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathILogLine.cs
More file actions
25 lines (21 loc) · 913 Bytes
/
ILogLine.cs
File metadata and controls
25 lines (21 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace ColumnizerLib;
/// <summary>
/// Represents a single line from a log file, including its content and line number.
/// </summary>
/// <remarks>Implementations of this interface provide access to both the full text of the log line and its
/// position within the source log. This can be used to correlate log entries with their original context or for
/// processing log files line by line.</remarks>
[Obsolete("This interface is deprecated. Use ILogLineMemory for a memory-based implementation instead.")]
public interface ILogLine : ITextValue
{
#region Properties
/// <summary>
/// Gets the full text of the line, including all characters and whitespace.
/// </summary>
string FullLine { get; }
/// <summary>
/// Gets the line number in the source text associated with this element.
/// </summary>
int LineNumber { get; }
#endregion
}