IDkmFunctionTableProvider.GetFunctionTableEntry Method

Definition

Obtain the function table entry for the passed address. The format of the engine is dependent on the debuggee architecture.

public:
 System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ GetFunctionTableEntry(Microsoft::VisualStudio::Debugger::Native::DkmNativeModuleInstance ^ nativeModuleInstance, System::UInt64 address);
public System.Collections.ObjectModel.ReadOnlyCollection<byte> GetFunctionTableEntry (Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance nativeModuleInstance, ulong address);
abstract member GetFunctionTableEntry : Microsoft.VisualStudio.Debugger.Native.DkmNativeModuleInstance * uint64 -> System.Collections.ObjectModel.ReadOnlyCollection<byte>
Public Function GetFunctionTableEntry (nativeModuleInstance As DkmNativeModuleInstance, address As ULong) As ReadOnlyCollection(Of Byte)

Parameters

nativeModuleInstance
DkmNativeModuleInstance

[In] 'DkmNativeModuleInstance' is used for modules which contain CPU code and/or are loaded by the Win32 loader.

address
UInt64

[In] The address to search the function table for. Normally, each entry contains a start and an end address. Implementations should return the entry whose address range contains the requested address.

Returns

[Out] The contents of the function table entry.

Applies to