| HierarchicalProfilerStart Method |
Starts time measurement for a node.
Namespace: DigitalRune.DiagnosticsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax [ConditionalAttribute("DIGITALRUNE_PROFILE")]
public void Start(
string nodeName
)
<ConditionalAttribute("DIGITALRUNE_PROFILE")>
Public Sub Start (
nodeName As String
)
public:
[ConditionalAttribute(L"DIGITALRUNE_PROFILE")]
void Start(
String^ nodeName
)
[<ConditionalAttribute("DIGITALRUNE_PROFILE")>]
member Start :
nodeName : string -> unit
Parameters
- nodeName
- Type: SystemString
The name of the node.
Remarks
If a child node with the same name exists, the time will be accumulated for this node.
If no child with this name exists, a new child node is created.
See Also