An enumeration of facilities that the runtime library can provide runtime information about. You can bitwise OR the values together.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
| Member Name | Description | Value |
|---|---|---|
| TraceNothing | Provided for completeness. | 0 |
| TraceJvm | Trace all things related to the JVM (configuration, loading, etc.). | 1 |
| TraceThread | Trace all things related to the attachment or detachment of threads. | 2 |
| TraceJni | Trace all things related to JNI. | 4 |
| TraceRemote | Trace all things related to remote Java (shared JVM) functionality. | 8 |
| TraceAll | A bitwise ORed value of all other facilities. | 15 |
| TraceEverything | A bitwise ORed value of all other facilities. | 15 |
Namespace: Codemesh.JuggerNET
Assembly: netrt (in netrt.dll)