Esempio n. 1
0
 /// <summary>
 /// Call this function to start a block in the log.
 /// Log lines will be indented, until next call to TraceBlockEnd.
 /// </summary>
 /// <param name="label">Label to set for the block</param>
 protected void TraceBlockStart(string label)
 {
     TracingService.BlockBegin(label);
 }
 /// <summary>
 /// Call this function to start a block in the log.
 /// Log lines will be indented, until next call to TraceBlockEnd.
 /// </summary>
 /// <param name="label">Label to set for the block</param>
 public void TraceBlockStart(string label)
 {
     TracingService.BlockBegin(label);
 }