API reference
API reference
Select your platform
No SDKs available
No versions available

DebugData Class

A serializable structure holding the debug data used by Immersive Debugger.
Indexed by each assembly. It represents the debug types with the metadata of assembly name and class names within the same assembly. For more info about Immersive Debugger, check out the official doc

Constructors

DebugData ( assemblyName , types )
Constructor of the DebugData.
Signature
DebugData(string assemblyName, List< string > types)
Parameters
assemblyName: string  String of the assembly, should be full name so it's identifiable
types: List< string >  A list of strings of the class names, each should be full name containing namespaces

Fields

AssemblyName : string
String of the assembly, should be full name so it's identifiable.
Signature
string AssemblyName
DebugTypes : List< string >
A list of strings of the class names, each should be full name containing namespaces.
Signature
List<string> DebugTypes