1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 // ------------------------------------------------------------------------------
5 // Changes to this file must follow the http://aka.ms/api-review process.
6 // ------------------------------------------------------------------------------
8 namespace System.Diagnostics
10 public partial class ConsoleTraceListener : System.Diagnostics.TextWriterTraceListener
12 public ConsoleTraceListener() { }
13 public ConsoleTraceListener(bool useErrorStream) { }
14 public override void Close() { }
16 public partial class DelimitedListTraceListener : System.Diagnostics.TextWriterTraceListener
18 public DelimitedListTraceListener(System.IO.Stream stream) { }
19 public DelimitedListTraceListener(System.IO.Stream stream, string name) { }
20 public DelimitedListTraceListener(System.IO.TextWriter writer) { }
21 public DelimitedListTraceListener(System.IO.TextWriter writer, string name) { }
22 public DelimitedListTraceListener(string fileName) { }
23 public DelimitedListTraceListener(string fileName, string name) { }
24 public string Delimiter { get { throw null; } set { } }
25 protected override string[] GetSupportedAttributes() { throw null; }
26 public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
27 public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
28 public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
29 public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
31 public partial class TextWriterTraceListener : System.Diagnostics.TraceListener
33 public TextWriterTraceListener() { }
34 public TextWriterTraceListener(System.IO.Stream stream) { }
35 public TextWriterTraceListener(System.IO.Stream stream, string name) { }
36 public TextWriterTraceListener(System.IO.TextWriter writer) { }
37 public TextWriterTraceListener(System.IO.TextWriter writer, string name) { }
38 public TextWriterTraceListener(string fileName) { }
39 public TextWriterTraceListener(string fileName, string name) { }
40 public System.IO.TextWriter Writer { get { throw null; } set { } }
41 public override void Close() { }
42 protected override void Dispose(bool disposing) { }
43 public override void Flush() { }
44 public override void Write(string message) { }
45 public override void WriteLine(string message) { }
47 public partial class XmlWriterTraceListener : System.Diagnostics.TextWriterTraceListener
49 public XmlWriterTraceListener(System.IO.Stream stream) { }
50 public XmlWriterTraceListener(System.IO.Stream stream, string name) { }
51 public XmlWriterTraceListener(System.IO.TextWriter writer) { }
52 public XmlWriterTraceListener(System.IO.TextWriter writer, string name) { }
53 public XmlWriterTraceListener(string filename) { }
54 public XmlWriterTraceListener(string filename, string name) { }
55 public override void Close() { }
56 public override void Fail(string message, string detailMessage) { }
57 public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, object data) { }
58 public override void TraceData(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, params object[] data) { }
59 public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string message) { }
60 public override void TraceEvent(System.Diagnostics.TraceEventCache eventCache, string source, System.Diagnostics.TraceEventType eventType, int id, string format, params object[] args) { }
61 public override void TraceTransfer(System.Diagnostics.TraceEventCache eventCache, string source, int id, string message, System.Guid relatedActivityId) { }
62 public override void Write(string message) { }
63 public override void WriteLine(string message) { }