JuggerNET Runtime Library

TraceFacility Enumeration

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.

[Serializable]
[Flags]
public enum TraceFacility

Members

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. TraceFacility.TraceEverything 15
TraceEverything A bitwise ORed value of all other facilities. TraceFacility.TraceAll 15

Requirements

Namespace: Codemesh.JuggerNET

Assembly: netrt (in netrt.dll)

See Also

Codemesh.JuggerNET Namespace