C# 클래스 Newtonsoft.Json.Serialization.DiagnosticsTraceWriter

Represents a trace writer that writes to the application's TraceListener instances.
상속: ITraceWriter
파일 보기 프로젝트 열기: JamesNK/Newtonsoft.Json 1 사용 예제들

공개 메소드들

메소드 설명
Trace ( TraceLevel level, string message, Exception ex ) : void

Writes the specified trace level, message and optional exception.

비공개 메소드들

메소드 설명
GetTraceEventType ( TraceLevel level ) : TraceEventType

메소드 상세

Trace() 공개 메소드

Writes the specified trace level, message and optional exception.
public Trace ( TraceLevel level, string message, Exception ex ) : void
level TraceLevel The at which to write this trace.
message string The trace message.
ex System.Exception The trace exception. This parameter is optional.
리턴 void