23 references to Method
ILCompiler.Compiler (2)
Compiler\MetadataManager.cs (2)
27using Method = Internal.Metadata.NativeFormat.Writer.Method; 855Method record = transformed.GetTransformedMethodDefinition(typicalMethod);
ILCompiler.MetadataTransform (21)
ILCompiler\Metadata\IMetadataPolicy.cs (1)
27/// Returns true if the method should generate <see cref="Method"/> metadata. If false,
ILCompiler\Metadata\MetadataTransformResult.cs (6)
84/// Attempts to retrieve a <see cref="Method"/> record corresponding to the specified 87public Method GetTransformedMethodDefinition(Cts.MethodDesc method) 97return rec as Method; 100public IEnumerable<KeyValuePair<Cts.MethodDesc, Method>> GetTransformedMethodDefinitions() 103if (entry.Value is Method m) 104yield return new KeyValuePair<Cts.MethodDesc, Method>(entry.Key, m);
ILCompiler\Metadata\Transform.Method.cs (4)
24private Action<Cts.MethodDesc, Method> _initMethodDef; 54private Method HandleMethodDefinition(Cts.MethodDesc method) 58return (Method)_methods.GetOrCreate(method, _initMethodDef ??= InitializeMethodDefinition); 61private void InitializeMethodDefinition(Cts.MethodDesc entity, Method record)
Internal\Metadata\NativeFormat\Writer\MdBinaryWriterGen.cs (3)
1140public static void Write(this NativeWriter writer, Method record) 1148public static void Write(this NativeWriter writer, List<Method> values) 1156foreach (Method value in values)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (7)
2800var other = obj as Method; 2846internal static MethodHandle AsHandle(Method record) 3016public Method Method; 4068public Method Method; 4470public List<Method> Methods = new List<Method>();