Udostępnij przez


DebugDirectoryBuilder.AddEntry Metoda

Definicja

Przeciążenia

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Dodaje wpis określonego typu.

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

Dodaje wpis określonego typu i serializuje jego dane.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Źródło:
DebugDirectoryBuilder.cs
Źródło:
DebugDirectoryBuilder.cs
Źródło:
DebugDirectoryBuilder.cs

Dodaje wpis określonego 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 wpisu.

version
UInt32

Wersja wpisu.

stamp
UInt32

Sygnatura wpisu.

Dotyczy

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

Źródło:
DebugDirectoryBuilder.cs
Źródło:
DebugDirectoryBuilder.cs
Źródło:
DebugDirectoryBuilder.cs

Dodaje wpis określonego typu i serializuje jego dane.

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 danych przekazanych do elementu dataSerializer.

Parametry

type
DebugDirectoryEntryType

Typ wpisu.

version
UInt32

Wersja wpisu.

stamp
UInt32

Sygnatura wpisu.

data
TData

Dane do przekazania do .dataSerializer

dataSerializer
Action<BlobBuilder,TData>

Serializator do serializacji danych do klasy BlobBuilder.

Dotyczy