Trace method
void
Trace(
- String traceType,
- String traceMessage
)
override
Initializes a new instance of the
The writer.
Handles a trace message
Type of trace message.
The trace message.
Implementation
// EwsTraceListener(TextWriter writer)
// {
// this.writer = writer;
// }
/// <summary>
/// Handles a trace message
/// </summary>
/// <param name="traceType">Type of trace message.</param>
/// <param name="traceMessage">The trace message.</param>
void Trace(String traceType, String traceMessage) {
_printWrapped(traceMessage);
// this.writer.Write(traceMessage);
}