System\Reflection\Attribute.NativeAot.cs (8)
27public static Attribute GetCustomAttribute(Module element, Type attributeType)
31public static Attribute GetCustomAttribute(Module element, Type attributeType, bool inherit) => GetCustomAttribute(element, attributeType); // "inherit" is meaningless for modules
63public static Attribute[] GetCustomAttributes(Module element)
68public static Attribute[] GetCustomAttributes(Module element, bool inherit) => GetCustomAttributes(element); // "inherit" is meaningless for assemblies
69public static Attribute[] GetCustomAttributes(Module element, Type attributeType)
73public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit) => GetCustomAttributes(element, attributeType); // "inherit" is meaningless for modules
101public static bool IsDefined(Module element, Type attributeType)
106public static bool IsDefined(Module element, Type attributeType, bool inherit) => IsDefined(element, attributeType); // "inherit" is meaningless for modules
System\Reflection\Emit\DynamicMethod.cs (3)
12public DynamicMethod(string name, MethodAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes, Module m, bool skipVisibility)
36public DynamicMethod(string name, Type returnType, Type[] parameterTypes, Module m)
42public DynamicMethod(string name, Type returnType, Type[] parameterTypes, Module m, bool skipVisibility)
System\Reflection\Emit\SignatureHelper.cs (7)
38public static SignatureHelper GetFieldSigHelper(Module mod)
55public static SignatureHelper GetLocalVarSigHelper(Module mod)
67public static SignatureHelper GetMethodSigHelper(Module mod, CallingConventions callingConvention, Type returnType)
73public static SignatureHelper GetMethodSigHelper(Module mod, Type returnType, Type[] parameterTypes)
79public static SignatureHelper GetPropertySigHelper(Module mod, CallingConventions callingConvention, Type returnType, Type[] requiredReturnTypeCustomModifiers, Type[] optionalReturnTypeCustomModifiers, Type[] parameterTypes, Type[][] requiredParameterTypeCustomModifiers, Type[][] optionalParameterTypeCustomModifiers)
85public static SignatureHelper GetPropertySigHelper(Module mod, Type returnType, Type[] parameterTypes)
91public static SignatureHelper GetPropertySigHelper(Module mod, Type returnType, Type[] requiredReturnTypeCustomModifiers, Type[] optionalReturnTypeCustomModifiers, Type[] parameterTypes, Type[][] requiredParameterTypeCustomModifiers, Type[][] optionalParameterTypeCustomModifiers)