C# Class NLight.Diagnostics.DebuggerTraceListener

A trace listener that will break in the debugger when the TraceEventType is equal or lower than the value specified by BreakOnEventType (by default TraceEventType.Error).
Inheritance: System.Diagnostics.TraceListener
Mostrar archivo Open project: slorion/nlight

Public Methods

Method Description
Fail ( string message ) : void
Fail ( string message, string detailMessage ) : void
TraceData ( TraceEventCache eventCache, string source, TraceEventType eventType, int id ) : void
TraceData ( TraceEventCache eventCache, string source, TraceEventType eventType, int id, object data ) : void
TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id ) : void
TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format ) : void
Write ( string message ) : void
WriteLine ( string message ) : void

Private Methods

Method Description
BreakOnEvent ( TraceEventType eventType ) : void

Method Details

Fail() public method

public Fail ( string message ) : void
message string
return void

Fail() public method

public Fail ( string message, string detailMessage ) : void
message string
detailMessage string
return void

TraceData() public method

public TraceData ( TraceEventCache eventCache, string source, TraceEventType eventType, int id ) : void
eventCache System.Diagnostics.TraceEventCache
source string
eventType TraceEventType
id int
return void

TraceData() public method

public TraceData ( TraceEventCache eventCache, string source, TraceEventType eventType, int id, object data ) : void
eventCache System.Diagnostics.TraceEventCache
source string
eventType TraceEventType
id int
data object
return void

TraceEvent() public method

public TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id ) : void
eventCache System.Diagnostics.TraceEventCache
source string
eventType TraceEventType
id int
return void

TraceEvent() public method

public TraceEvent ( TraceEventCache eventCache, string source, TraceEventType eventType, int id, string format ) : void
eventCache System.Diagnostics.TraceEventCache
source string
eventType TraceEventType
id int
format string
return void

Write() public method

public Write ( string message ) : void
message string
return void

WriteLine() public method

public WriteLine ( string message ) : void
message string
return void