DkmInstructionSymbol.GetInlineFramesCount Method

Definition

Overloads

GetInlineFramesCount(DkmBasicSymbolInfoRequestFlags)

Returns the number of inline frames at the given instruction symbol.

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

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTMPreview).

GetInlineFramesCount(DkmWorkList, DkmBasicSymbolInfoRequestFlags, DkmCompletionRoutine<DkmGetInlineFramesCountAsyncResult>)

Returns the number of inline frames at the given instruction symbol.

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 RTM (DkmApiVersion.VS16RTMPreview).

GetInlineFramesCount(DkmBasicSymbolInfoRequestFlags)

Returns the number of inline frames at the given instruction symbol.

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

This API was introduced in Visual Studio 16 RTM (DkmApiVersion.VS16RTMPreview).

public:
 System::UInt32 GetInlineFramesCount(Microsoft::VisualStudio::Debugger::Symbols::DkmBasicSymbolInfoRequestFlags Flags);
public uint GetInlineFramesCount (Microsoft.VisualStudio.Debugger.Symbols.DkmBasicSymbolInfoRequestFlags Flags);
member this.GetInlineFramesCount : Microsoft.VisualStudio.Debugger.Symbols.DkmBasicSymbolInfoRequestFlags -> uint32
Public Function GetInlineFramesCount (Flags As DkmBasicSymbolInfoRequestFlags) As UInteger

Parameters

Flags
DkmBasicSymbolInfoRequestFlags

[In] Flags passed to DkmInstructionSymbol.GetBasicInfo and GetInlineFramesCount.

Returns

[Out] The number of inline frames at the given RVA and frame.

Applies to

GetInlineFramesCount(DkmWorkList, DkmBasicSymbolInfoRequestFlags, DkmCompletionRoutine<DkmGetInlineFramesCountAsyncResult>)

Returns the number of inline frames at the given instruction symbol.

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 RTM (DkmApiVersion.VS16RTMPreview).

public:
 void GetInlineFramesCount(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, Microsoft::VisualStudio::Debugger::Symbols::DkmBasicSymbolInfoRequestFlags Flags, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Symbols::DkmGetInlineFramesCountAsyncResult> ^ CompletionRoutine);
public void GetInlineFramesCount (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, Microsoft.VisualStudio.Debugger.Symbols.DkmBasicSymbolInfoRequestFlags Flags, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetInlineFramesCountAsyncResult> CompletionRoutine);
member this.GetInlineFramesCount : Microsoft.VisualStudio.Debugger.DkmWorkList * Microsoft.VisualStudio.Debugger.Symbols.DkmBasicSymbolInfoRequestFlags * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetInlineFramesCountAsyncResult> -> unit
Public Sub GetInlineFramesCount (WorkList As DkmWorkList, Flags As DkmBasicSymbolInfoRequestFlags, CompletionRoutine As DkmCompletionRoutine(Of DkmGetInlineFramesCountAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

Flags
DkmBasicSymbolInfoRequestFlags

[In] Flags passed to DkmInstructionSymbol.GetBasicInfo and GetInlineFramesCount.

CompletionRoutine
DkmCompletionRoutine<DkmGetInlineFramesCountAsyncResult>

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