 |
TraceableKind Enumeration |
The documentation is integral part of the weroSoft product documentation. This part is intended to be used by developers only.
Gets or sets a value indicating how and when the property is traceable.
Namespace:
WeroSoft.Diagnostics
Assembly:
WeroSoft.Core.Library (in WeroSoft.Core.Library.dll) Version: 3.0 Pre-Release
Syntax[FlagsAttribute]
public enum TraceableKind
Remarks
This type allows defining how a value trace shall be performed. Use the
Members
| Member name | Value | Description |
---|
| Normal | 0 |
The property content is traced on request.
|
| DevelopmentDebugOnly | 2 |
The property content is traced on debug level only if real development debugging is running.
|
| RuntimeDebugOnly | 4 |
The property content is traced only if the runtime debugging level is set to debug level.
|
| DebugOnly | 6 |
The property content is traced if development debugger is attached or during runtime if trace is set to debug level.
|
| MetaInfo | 8 |
Shows the meta information of the item.
|
| ExplicitShowTypeDefault | 16 |
Show the type default.
|
| SuppressValue | 32 |
Suppresses the output of the value.
|
| Off | 128 |
Debugging is switched of.
|
See Also