| HierarchicalProfilerDump Method |
Dumps the profiled data of the given node.
Namespace: DigitalRune.DiagnosticsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public string Dump(
HierarchicalProfilerNode node,
int maxLevelIncluded
)
Public Function Dump (
node As HierarchicalProfilerNode,
maxLevelIncluded As Integer
) As String
public:
String^ Dump(
HierarchicalProfilerNode^ node,
int maxLevelIncluded
)
member Dump :
node : HierarchicalProfilerNode *
maxLevelIncluded : int -> string
Parameters
- node
- Type: DigitalRune.DiagnosticsHierarchicalProfilerNode
The node. Can be to use the root node. - maxLevelIncluded
- Type: SystemInt32
The maximal level included relative to the given node. 0 means, no child data is included.
1 means, one level of children are included.
Return Value
Type:
String
A string representing the profiled data.
See Also