Bagikan melalui


DebugDirectoryBuilder.AddEntry Metode

Definisi

Overload

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Menambahkan entri dari tipe yang ditentukan.

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

Menambahkan entri jenis yang ditentukan dan menserialisasikan datanya.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Sumber:
DebugDirectoryBuilder.cs
Sumber:
DebugDirectoryBuilder.cs
Sumber:
DebugDirectoryBuilder.cs

Menambahkan entri dari tipe yang ditentukan.

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

Jenis entri.

version
UInt32

Versi entri.

stamp
UInt32

Stempel entri.

Berlaku untuk

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

Sumber:
DebugDirectoryBuilder.cs
Sumber:
DebugDirectoryBuilder.cs
Sumber:
DebugDirectoryBuilder.cs

Menambahkan entri jenis yang ditentukan dan menserialisasikan datanya.

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

Jenis parameter

TData

Jenis data yang diteruskan ke dataSerializer.

Parameter

type
DebugDirectoryEntryType

Jenis entri.

version
UInt32

Versi entri.

stamp
UInt32

Stempel entri.

data
TData

Data yang akan diteruskan ke dataSerializer.

dataSerializer
Action<BlobBuilder,TData>

Serializer untuk menserialisasikan data ke BlobBuilder.

Berlaku untuk