Share via


DkmModule.EnumSymbolsDocuments Method

Definition

Overloads

EnumSymbolsDocuments()

Enumerates the symbol documents of the symbols file associated with the module.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5).

EnumSymbolsDocuments(DkmWorkList, DkmCompletionRoutine<DkmEnumSymbolsDocumentsAsyncResult>)

Enumerates the symbol documents of the symbols file associated with the module.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5).

EnumSymbolsDocuments()

Enumerates the symbol documents of the symbols file associated with the module.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5).

public:
 cli::array <Microsoft::VisualStudio::Debugger::Symbols::DkmSymbolsDocument ^> ^ EnumSymbolsDocuments();
public Microsoft.VisualStudio.Debugger.Symbols.DkmSymbolsDocument[] EnumSymbolsDocuments ();
member this.EnumSymbolsDocuments : unit -> Microsoft.VisualStudio.Debugger.Symbols.DkmSymbolsDocument[]
Public Function EnumSymbolsDocuments () As DkmSymbolsDocument()

Returns

[Out] Array of embedded document metadata.

Applies to

EnumSymbolsDocuments(DkmWorkList, DkmCompletionRoutine<DkmEnumSymbolsDocumentsAsyncResult>)

Enumerates the symbol documents of the symbols file associated with the module.

This method will append a new work item to the specified work list, and return once the work item has been appended. The actual processing of the work item is asynchronous. The caller will be notified that the request is complete through the completion routine.

Location constraint: API must be called from an IDE component (component level > 100,000).

This API was introduced in Visual Studio 16 Update 5 (DkmApiVersion.VS16Update5).

public void EnumSymbolsDocuments (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmEnumSymbolsDocumentsAsyncResult> CompletionRoutine);
member this.EnumSymbolsDocuments : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmEnumSymbolsDocumentsAsyncResult> -> unit
Public Sub EnumSymbolsDocuments (WorkList As DkmWorkList, CompletionRoutine As DkmCompletionRoutine(Of DkmEnumSymbolsDocumentsAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

CompletionRoutine
DkmCompletionRoutine<DkmEnumSymbolsDocumentsAsyncResult>

Routine to fire when the request is complete. If the request is successfully appended to the work list, this will always fire (including when the operation is canceled). This will never fire if appending the work item fails.

Applies to