Sdílet prostřednictvím


DebugDirectoryBuilder.AddEntry Metoda

Definice

Přetížení

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Přidá položku zadaného typu.

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

Přidá položku zadaného typu a serializuje jeho data.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Zdroj:
DebugDirectoryBuilder.cs
Zdroj:
DebugDirectoryBuilder.cs
Zdroj:
DebugDirectoryBuilder.cs

Přidá položku zadaného typu.

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)

Parametry

type
DebugDirectoryEntryType

Typ položky.

version
UInt32

Verze položky.

stamp
UInt32

Vstupní razítko.

Platí pro

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

Zdroj:
DebugDirectoryBuilder.cs
Zdroj:
DebugDirectoryBuilder.cs
Zdroj:
DebugDirectoryBuilder.cs

Přidá položku zadaného typu a serializuje jeho data.

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))

Parametry typu

TData

Typ dat předaných do dataSerializer.

Parametry

type
DebugDirectoryEntryType

Typ položky.

version
UInt32

Verze položky.

stamp
UInt32

Vstupní razítko.

data
TData

Data, která se mají předat do dataSerializer.

dataSerializer
Action<BlobBuilder,TData>

Serializátor pro serializaci dat do .BlobBuilder

Platí pro