IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DiagnosticChannelFormatterOptions.cs
Go to the documentation of this file.
1using System;
2
4
6{
7
9 {
10
15 {
16
17 }
18
24 {
25 TraceChannel = defaultChannel;
26 InfoChannel = defaultChannel;
27 WarningChannel = defaultChannel;
28 ErrorChannel = defaultChannel;
29 FatalChannel = defaultChannel;
30 }
31
35 public IDiagnosticChannel? TraceChannel { get; set; }
36
40 public IDiagnosticChannel? InfoChannel { get; set; }
41
45 public IDiagnosticChannel? WarningChannel { get; set; }
46
50 public IDiagnosticChannel? ErrorChannel { get; set; }
51
55 public IDiagnosticChannel? FatalChannel { get; set; }
56
57 }
58
59}
IDiagnosticChannel? ErrorChannel
Gets the channel into which to direct DiagnosticLevel.Error messages.
IDiagnosticChannel? InfoChannel
Gets the channel into which to direct DiagnosticLevel.Info messages.
DiagnosticChannelFormatterOptions(IDiagnosticChannel defaultChannel)
Initializes a new instance.
IDiagnosticChannel? FatalChannel
Gets the channel into which to direct DiagnosticLevel.Fatal messages.
IDiagnosticChannel? WarningChannel
Gets the channel into which to direct DiagnosticLevel.Warning messages.
IDiagnosticChannel? TraceChannel
Gets the channel into which to direct DiagnosticLevel.Trace messages.
Handles consuming and outputting diagnostic events.