DebugDirectoryBuilder.AddEntry 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
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)
매개 변수
항목 유형입니다.
- 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
데이터의 형식입니다.
매개 변수
항목 유형입니다.
- version
- UInt32
항목 버전입니다.
- stamp
- UInt32
항목 스탬프입니다.
- data
- TData
dataSerializer
로 전달할 데이터입니다.
- dataSerializer
- Action<BlobBuilder,TData>
데이터를 BlobBuilder에 직렬화할 직렬 변환기입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET