다음을 통해 공유


DebugDirectoryBuilder.AddEntry 메서드

정의

오버로드

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

지정된 형식의 항목을 추가합니다.

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

지정된 형식의 항목을 추가하고 해당 데이터를 직렬화합니다.

AddEntry(DebugDirectoryEntryType, UInt32, UInt32)

Source:
DebugDirectoryBuilder.cs
Source:
DebugDirectoryBuilder.cs
Source:
DebugDirectoryBuilder.cs

지정된 형식의 항목을 추가합니다.

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)

매개 변수

type
DebugDirectoryEntryType

항목 유형입니다.

version
UInt32

항목 버전입니다.

stamp
UInt32

항목 스탬프입니다.

적용 대상

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

Source:
DebugDirectoryBuilder.cs
Source:
DebugDirectoryBuilder.cs
Source:
DebugDirectoryBuilder.cs

지정된 형식의 항목을 추가하고 해당 데이터를 직렬화합니다.

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

형식 매개 변수

TData

에 전달된 dataSerializer데이터의 형식입니다.

매개 변수

type
DebugDirectoryEntryType

항목 유형입니다.

version
UInt32

항목 버전입니다.

stamp
UInt32

항목 스탬프입니다.

data
TData

dataSerializer로 전달할 데이터입니다.

dataSerializer
Action<BlobBuilder,TData>

데이터를 BlobBuilder에 직렬화할 직렬 변환기입니다.

적용 대상