Class TracingCompleteEventArgs
Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.
public sealed class TracingCompleteEventArgs : EventArgs
- Inheritance
-
TracingCompleteEventArgs
- Inherited Members
Properties
DataLossOccurred
Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.
[JsonPropertyName("dataLossOccurred")]
public bool DataLossOccurred { get; set; }
Property Value
Stream
A handle of the stream that holds resulting trace data.
[JsonPropertyName("stream")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Stream { get; set; }
Property Value
StreamCompression
Compression format of returned stream.
[JsonPropertyName("streamCompression")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StreamCompression? StreamCompression { get; set; }
Property Value
TraceFormat
Trace data format of returned stream.
[JsonPropertyName("traceFormat")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StreamFormat? TraceFormat { get; set; }