C# Class Thinktecture.ServiceModel.Utility.Trace

Afficher le fichier Open project: ChristianWeyer/Thinktecture.ServiceModel

Méthodes publiques

Méthode Description
Error ( string traceSource, string message ) : void

Error trace of the specified message.

Information ( string traceSource, string message ) : void

Information trace of the specified message.

LogException ( string traceSource, Exception exception ) : void

Logs the specified exception.

TraceEvent ( string traceSource, System.Diagnostics type, string message ) : void

Traces the event.

Warning ( string traceSource, string message ) : void

Warning trace of the specified message.

Private Methods

Méthode Description
BuildExceptionTrace ( Exception exception ) : StringBuilder

Method Details

Error() public static méthode

Error trace of the specified message.
public static Error ( string traceSource, string message ) : void
traceSource string The trace source.
message string The message.
Résultat void

Information() public static méthode

Information trace of the specified message.
public static Information ( string traceSource, string message ) : void
traceSource string The trace source.
message string The message.
Résultat void

LogException() public static méthode

Logs the specified exception.
public static LogException ( string traceSource, Exception exception ) : void
traceSource string The trace source.
exception System.Exception The exception.
Résultat void

TraceEvent() public static méthode

Traces the event.
public static TraceEvent ( string traceSource, System.Diagnostics type, string message ) : void
traceSource string The trace source.
type System.Diagnostics The type.
message string The message.
Résultat void

Warning() public static méthode

Warning trace of the specified message.
public static Warning ( string traceSource, string message ) : void
traceSource string The trace source.
message string The message.
Résultat void