DkmCustomSymbolFileId.Create Method

Definition

Create a new DkmCustomSymbolFileId object instance.

public:
 static Microsoft::VisualStudio::Debugger::Symbols::DkmCustomSymbolFileId ^ Create(Guid SymbolProviderId, int Type, System::Collections::ObjectModel::ReadOnlyCollection<System::Byte> ^ Data);
public static Microsoft.VisualStudio.Debugger.Symbols.DkmCustomSymbolFileId Create (Guid SymbolProviderId, int Type, System.Collections.ObjectModel.ReadOnlyCollection<byte> Data);
static member Create : Guid * int * System.Collections.ObjectModel.ReadOnlyCollection<byte> -> Microsoft.VisualStudio.Debugger.Symbols.DkmCustomSymbolFileId
Public Shared Function Create (SymbolProviderId As Guid, Type As Integer, Data As ReadOnlyCollection(Of Byte)) As DkmCustomSymbolFileId

Parameters

SymbolProviderId
Guid

[In] Unique identifier for symbol files/symbol providers.

Type
Int32

[In] 'Type' value from the IMAGE_DEBUG_DIRECTORY. For example, IMAGE_DEBUG_TYPE_CODEVIEW (2) is used for PDB files. See winnt.h for a complete listing.

Data
ReadOnlyCollection<Byte>

[In] Raw bytes from the PE file header.

Returns

[Out] Result of this method call.

Applies to