文書化されていませんが、.NET 4.5の最適化の1つに似ています。これは、リフレクションタイプの情報キャッシュを準備するために使用されているようで、一般的なフレームワークタイプでの後続のリフレクションコードの実行が高速になります。System.Reflection.Assembly.cs、RuntimeAssembly.Flagsプロパティの参照ソースにそれについてのコメントがあります。
// Each blessed API will be annotated with a "__DynamicallyInvokableAttribute".
// This "__DynamicallyInvokableAttribute" is a type defined in its own assembly.
// So the ctor is always a MethodDef and the type a TypeDef.
// We cache this ctor MethodDef token for faster custom attribute lookup.
// If this attribute type doesn't exist in the assembly, it means the assembly
// doesn't contain any blessed APIs.
Type invocableAttribute = GetType("__DynamicallyInvokableAttribute", false);
if (invocableAttribute != null)
{
Contract.Assert(((MetadataToken)invocableAttribute.MetadataToken).IsTypeDef);
ConstructorInfo ctor = invocableAttribute.GetConstructor(Type.EmptyTypes);
Contract.Assert(ctor != null);
int token = ctor.MetadataToken;
Contract.Assert(((MetadataToken)token).IsMethodDef);
flags |= (ASSEMBLY_FLAGS)token & ASSEMBLY_FLAGS.ASSEMBLY_FLAGS_TOKEN_MASK;
}
「祝福されたAPI」が何を意味するかについて、さらなるヒントなしに。これはフレームワーク自体の型でのみ機能することはコンテキストから明らかですが。タイプとメソッドに適用される属性をチェックする追加のコードがどこかにあるはずです。それがどこにあるのかはわかりませんが、すべての.NETタイプを表示してキャッシュを試す必要があることを考えると、Ngen.exeしか考えられません。