DkmModule.GetPublicSymbolByNameCallback Method

Definition

Overloads

GetPublicSymbolByNameCallback(String)

Return the RVA for an S_PUBLIC32 for a particular name by string.

GetPublicSymbolByNameCallback(DkmWorkList, String, DkmCompletionRoutine<DkmGetPublicSymbolByNameCallbackAsyncResult>)

Return the RVA for an S_PUBLIC32 for a particular name by string.

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.

GetPublicSymbolByNameCallback(String)

Return the RVA for an S_PUBLIC32 for a particular name by string.

public:
 Microsoft::VisualStudio::Debugger::Native::DkmNativeInstructionSymbol ^ GetPublicSymbolByNameCallback(System::String ^ PublicName);
public:
 Microsoft::VisualStudio::Debugger::Native::DkmNativeInstructionSymbol ^ GetPublicSymbolByNameCallback(Platform::String ^ PublicName);
Microsoft::VisualStudio::Debugger::Native::DkmNativeInstructionSymbol GetPublicSymbolByNameCallback(std::wstring const & PublicName);
public Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionSymbol GetPublicSymbolByNameCallback (string PublicName);
member this.GetPublicSymbolByNameCallback : string -> Microsoft.VisualStudio.Debugger.Native.DkmNativeInstructionSymbol
Public Function GetPublicSymbolByNameCallback (PublicName As String) As DkmNativeInstructionSymbol

Parameters

PublicName
String

[In] The name of the public symbol to lookup.

Returns

[Out,Optional] The native instruction symbol for this public symbol.

Applies to

GetPublicSymbolByNameCallback(DkmWorkList, String, DkmCompletionRoutine<DkmGetPublicSymbolByNameCallbackAsyncResult>)

Return the RVA for an S_PUBLIC32 for a particular name by string.

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.

public:
 void GetPublicSymbolByNameCallback(Microsoft::VisualStudio::Debugger::DkmWorkList ^ WorkList, System::String ^ PublicName, Microsoft::VisualStudio::Debugger::DkmCompletionRoutine<Microsoft::VisualStudio::Debugger::Symbols::DkmGetPublicSymbolByNameCallbackAsyncResult> ^ CompletionRoutine);
public void GetPublicSymbolByNameCallback (Microsoft.VisualStudio.Debugger.DkmWorkList WorkList, string PublicName, Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetPublicSymbolByNameCallbackAsyncResult> CompletionRoutine);
member this.GetPublicSymbolByNameCallback : Microsoft.VisualStudio.Debugger.DkmWorkList * string * Microsoft.VisualStudio.Debugger.DkmCompletionRoutine<Microsoft.VisualStudio.Debugger.Symbols.DkmGetPublicSymbolByNameCallbackAsyncResult> -> unit
Public Sub GetPublicSymbolByNameCallback (WorkList As DkmWorkList, PublicName As String, CompletionRoutine As DkmCompletionRoutine(Of DkmGetPublicSymbolByNameCallbackAsyncResult))

Parameters

WorkList
DkmWorkList

WorkList to append the new work item to.

PublicName
String

[In] The name of the public symbol to lookup.

CompletionRoutine
DkmCompletionRoutine<DkmGetPublicSymbolByNameCallbackAsyncResult>

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