AssemblyExtensions.TryGetRawMetadata(Assembly, Byte*, Int32) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
중요
이 API는 CLS 규격이 아닙니다.
와 함께 사용할 어셈블리의 메타데이터 섹션을 검색합니다 MetadataReader.
public:
[System::Runtime::CompilerServices::Extension]
static bool TryGetRawMetadata(System::Reflection::Assembly ^ assembly, [Runtime::InteropServices::Out] System::Byte* % blob, [Runtime::InteropServices::Out] int % length);
[System.CLSCompliant(false)]
public static bool TryGetRawMetadata (this System.Reflection.Assembly assembly, out byte* blob, out int length);
[<System.CLSCompliant(false)>]
static member TryGetRawMetadata : System.Reflection.Assembly * Byte* * int -> bool
매개 변수
- assembly
- Assembly
메타데이터를 검색할 어셈블리입니다.
- blob
- Byte*
이 메서드가 반환되면 메타데이터 섹션 Blob에 대한 포인터가 포함됩니다.
- length
- Int32
이 메서드가 반환되면 메타데이터 섹션 Blob의 길이가 포함됩니다.
반환
true
메타데이터가 성공적으로 검색되면 이고, false
오류가 발생한 경우 메타데이터는 및 AOT 이미지와 같은 AssemblyBuilder 일부 어셈블리에 사용할 수 없을 수 있습니다.
- 특성
설명
호출자는 메타데이터 Blob에 쓰지 않아야 합니다.
메타데이터 Blob 포인터는 어셈블리가 활성 상태인 한 유효한 상태로 유지됩니다.
호출자는 메타데이터 Blob에 액세스하는 동안 어셈블리 개체를 활성 상태로 유지합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET