DebugDirectoryBuilder.AddEntry Metod

Definition

Överlagringar

Name Description
AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Lägger till en post av den angivna typen.

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

Lägger till en post av den angivna typen och serialiserar dess data.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs

Lägger till en post av den angivna typen.

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)

Parametrar

type
DebugDirectoryEntryType

Posttypen.

version
UInt32

Inmatningsversionen.

stamp
UInt32

Poststämpeln.

Gäller för

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

Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs
Källa:
DebugDirectoryBuilder.cs

Lägger till en post av den angivna typen och serialiserar dess 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))

Typparametrar

TData

Typen av data som skickas till dataSerializer.

Parametrar

type
DebugDirectoryEntryType

Posttypen.

version
UInt32

Inmatningsversionen.

stamp
UInt32

Poststämpeln.

data
TData

De data som ska skickas till dataSerializer.

dataSerializer
Action<BlobBuilder,TData>

En serialiserare för serialisering av data till en BlobBuilder.

Gäller för