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
Afficher le fichier Open project: slorion/nlight

Méthodes publiques

Méthode 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

Méthode Description
BreakOnEvent ( TraceEventType eventType ) : void

Method Details

Fail() public méthode

public Fail ( string message ) : void
message string
Résultat void

Fail() public méthode

public Fail ( string message, string detailMessage ) : void
message string
detailMessage string
Résultat void

TraceData() public méthode

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

TraceData() public méthode

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
Résultat void

TraceEvent() public méthode

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

TraceEvent() public méthode

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
Résultat void

Write() public méthode

public Write ( string message ) : void
message string
Résultat void

WriteLine() public méthode

public WriteLine ( string message ) : void
message string
Résultat void