IDkmSymbolFileBytesQuery.GetSymbolFileRawBytes(DkmModule) Method

Definition

GetSymbolFileRawBytes is used to retrieve the raw bytes of a symbol file from the remote side. This is currently only supported for dynamic portable PDBs. This will return at most 10 MB.

public:
 cli::array <System::Byte> ^ GetSymbolFileRawBytes(Microsoft::VisualStudio::Debugger::Symbols::DkmModule ^ module);
public byte[] GetSymbolFileRawBytes (Microsoft.VisualStudio.Debugger.Symbols.DkmModule module);
abstract member GetSymbolFileRawBytes : Microsoft.VisualStudio.Debugger.Symbols.DkmModule -> byte[]
Public Function GetSymbolFileRawBytes (module As DkmModule) As Byte()

Parameters

module
DkmModule

[In] The DkmModule class represents a code bundle (ex: dll or exe) which is or once was loaded into one or more processes. The DkmModule class is the central object to the symbol APIs, and is 1:1 with the symbol handler's notation of what is loaded. If a code bundle loads into three different processes (or the same process but with three different base addresses or three different app domains) but the symbol handler thinks of all of these as being identical, there will be only one module object.

Returns

Byte[]

[Out] The raw bytes of the symbol file.

Applies to