IDkmScriptDocumentTreeNodeCreateNotification.OnScriptDocumentTreeNodeCreate Method

Definition

OnScriptDocumentTreeNodeCreate is invoked as part of event processing. See interface definition for more information.

public:
 void OnScriptDocumentTreeNodeCreate(Microsoft::VisualStudio::Debugger::Script::DkmScriptDocumentTreeNode ^ scriptDocumentTreeNode, Microsoft::VisualStudio::Debugger::DkmWorkList ^ workList, Microsoft::VisualStudio::Debugger::DkmEventDescriptor ^ eventDescriptor);
public void OnScriptDocumentTreeNodeCreate (Microsoft.VisualStudio.Debugger.Script.DkmScriptDocumentTreeNode scriptDocumentTreeNode, Microsoft.VisualStudio.Debugger.DkmWorkList workList, Microsoft.VisualStudio.Debugger.DkmEventDescriptor eventDescriptor);
abstract member OnScriptDocumentTreeNodeCreate : Microsoft.VisualStudio.Debugger.Script.DkmScriptDocumentTreeNode * Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmEventDescriptor -> unit
Public Sub OnScriptDocumentTreeNodeCreate (scriptDocumentTreeNode As DkmScriptDocumentTreeNode, workList As DkmWorkList, eventDescriptor As DkmEventDescriptor)

Parameters

scriptDocumentTreeNode
DkmScriptDocumentTreeNode

[In] Represents a node in the 'Script Documents' virtual tree within solution explorer. Nodes may either be a virtual container, or they can be a document. In the latter case, they will be a DkmScriptDocument.

workList
DkmWorkList

WorkList to append additional event processing work to. This work list will begin execution after all listeners have been notifiied. The event will not finish until after the work list fully executes.

eventDescriptor
DkmEventDescriptor

[In] Describes the event being processed.

Applies to