xtd 0.2.0
event_type_filter.h
Go to the documentation of this file.
1 #pragma once
5 #include "source_levels.h"
6 #include "trace_filter.h"
7 
9 namespace xtd {
11  namespace diagnostics {
27  class core_export_ event_type_filter : public xtd::diagnostics::trace_filter {
28  public:
30 
36 
38 
43  xtd::diagnostics::source_levels event_type() const noexcept;
47  void event_type(xtd::diagnostics::source_levels level) noexcept;
49 
51 
62  bool should_trace(const xtd::diagnostics::trace_event_cache& cache, const xtd::ustring& source, xtd::diagnostics::trace_event_type event_type, int32 id, const xtd::ustring& message, std::any data1, const std::vector<std::any>& data_array) noexcept override;
64 
65  private:
67  };
68  }
69 }
Contains xtd::diagnostics::trace_filter class.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
source_levels
Specifies the levels of trace messages filtered by the source switch and event type filter...
Definition: source_levels.h:23
Provides trace event data specific to a thread and a process.
Definition: trace_event_cache.h:28
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:46
Contains xtd::diagnostics::source_levels enum class.
Indicates that all styles except allow_binary_specifier, allow_octal_specifier and allow_hex_specifie...
int_least32_t int32
Represents a 32-bit signed integer.
Definition: types.h:129
Does not allow any events through.
Provides the base class for trace filter implementations.
Definition: trace_filter.h:33
Indicates whether a listener should trace based on the event type.
Definition: event_type_filter.h:27
trace_event_type
Identifies the type of event that has caused the trace.
Definition: trace_event_type.h:23