TraceXml method
Implementation
void TraceXml(enumerations.TraceFlags traceType, MemoryStream stream) {
if (this.IsTraceEnabledFor(traceType)) {
String traceTypeStr = traceType.toString();
String logMessage =
EwsUtilities.FormatLogMessageWithXmlContent(traceTypeStr, stream);
this.TraceListener.Trace(traceTypeStr, logMessage);
}
}