Mercurial > pub > ImplabNet
comparison Implab.Diagnostics.Interactive/TraceViewItem.cs @ 50:f8cbe84cfdb1
Слияние с interactive logger
author | cin |
---|---|
date | Fri, 18 Apr 2014 12:37:48 +0400 |
parents | d9d794b61bb9 |
children | 9c32ef39b851 |
comparison
equal
deleted
inserted
replaced
44:e5ec543feee3 | 50:f8cbe84cfdb1 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Diagnostics.Interactive { | |
8 public class TraceViewItem { | |
9 string m_formattedValue; | |
10 | |
11 public string Message { get; set; } | |
12 public int Timestamp { get; set; } | |
13 public int Indent { get; set; } | |
14 public int Thread { get; set; } | |
15 public string Channel { get; set; } | |
16 | |
17 public string FormattedMessage { | |
18 get { | |
19 if (m_formattedValue == null) { | |
20 m_formattedValue = Message.Replace("\r",String.Empty).Replace("\n", " | "); | |
21 } | |
22 return m_formattedValue; | |
23 } | |
24 } | |
25 } | |
26 } |