Freigeben über


DebugDirectoryBuilder.AddEntry Methode

Definition

Überlädt

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Fügt einen Eintrag vom angegebenen Typ hinzu.

AddEntry<TData>(DebugDirectoryEntryType, UInt32, UInt32, TData, Action<BlobBuilder,TData>)

Fügt einen Eintrag vom angegebenen Typ hinzu und serialisiert dessen Daten.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Quelle:
DebugDirectoryBuilder.cs
Quelle:
DebugDirectoryBuilder.cs
Quelle:
DebugDirectoryBuilder.cs

Fügt einen Eintrag vom angegebenen Typ hinzu.

public:
 void AddEntry(System::Reflection::PortableExecutable::DebugDirectoryEntryType type, System::UInt32 version, System::UInt32 stamp);
public void AddEntry (System.Reflection.PortableExecutable.DebugDirectoryEntryType type, uint version, uint stamp);
member this.AddEntry : System.Reflection.PortableExecutable.DebugDirectoryEntryType * uint32 * uint32 -> unit
Public Sub AddEntry (type As DebugDirectoryEntryType, version As UInteger, stamp As UInteger)

Parameter

type
DebugDirectoryEntryType

Der Eintragstyp.

version
UInt32

Die Version des Eintrags.

stamp
UInt32

Der Stempel des Eintrags.

Gilt für:

AddEntry<TData>(DebugDirectoryEntryType, UInt32, UInt32, TData, Action<BlobBuilder,TData>)

Quelle:
DebugDirectoryBuilder.cs
Quelle:
DebugDirectoryBuilder.cs
Quelle:
DebugDirectoryBuilder.cs

Fügt einen Eintrag vom angegebenen Typ hinzu und serialisiert dessen Daten.

public:
generic <typename TData>
 void AddEntry(System::Reflection::PortableExecutable::DebugDirectoryEntryType type, System::UInt32 version, System::UInt32 stamp, TData data, Action<System::Reflection::Metadata::BlobBuilder ^, TData> ^ dataSerializer);
public void AddEntry<TData> (System.Reflection.PortableExecutable.DebugDirectoryEntryType type, uint version, uint stamp, TData data, Action<System.Reflection.Metadata.BlobBuilder,TData> dataSerializer);
member this.AddEntry : System.Reflection.PortableExecutable.DebugDirectoryEntryType * uint32 * uint32 * 'Data * Action<System.Reflection.Metadata.BlobBuilder, 'Data> -> unit
Public Sub AddEntry(Of TData) (type As DebugDirectoryEntryType, version As UInteger, stamp As UInteger, data As TData, dataSerializer As Action(Of BlobBuilder, TData))

Typparameter

TData

Der Typ der an übergebenen dataSerializerDaten.

Parameter

type
DebugDirectoryEntryType

Der Eintragstyp.

version
UInt32

Die Version des Eintrags.

stamp
UInt32

Der Stempel des Eintrags.

data
TData

Die Daten, die an dataSerializer übergeben werden sollen.

dataSerializer
Action<BlobBuilder,TData>

Ein Serialisierungsprogramm zum Serialisieren von Daten in eine BlobBuilder-Klasse.

Gilt für: