src\System\Attribute.CoreCLR.cs (8)
627public static Attribute[] GetCustomAttributes(Module element, Type attributeType)
632public static Attribute[] GetCustomAttributes(Module element)
637public static Attribute[] GetCustomAttributes(Module element, bool inherit)
644public static Attribute[] GetCustomAttributes(Module element, Type attributeType, bool inherit)
655public static bool IsDefined(Module element, Type attributeType)
660public static bool IsDefined(Module element, Type attributeType, bool inherit)
673public static Attribute? GetCustomAttribute(Module element, Type attributeType)
678public static Attribute? GetCustomAttribute(Module element, Type attributeType, bool inherit)
src\System\Reflection\Emit\SignatureHelper.cs (19)
19public static SignatureHelper GetMethodSigHelper(Module? mod, Type? returnType, Type[]? parameterTypes)
24public static SignatureHelper GetMethodSigHelper(Module? mod, CallingConventions callingConvention, Type? returnType)
29internal static SignatureHelper GetMethodSpecSigHelper(Module? scope, Type[] inst)
39Module? scope, CallingConventions callingConvention,
48Module? scope, CallingConventions callingConvention, int cGenericParam,
79internal static SignatureHelper GetMethodSigHelper(Module? mod, CallingConvention unmanagedCallConv, Type? returnType)
170public static SignatureHelper GetLocalVarSigHelper(Module? mod)
175public static SignatureHelper GetFieldSigHelper(Module? mod)
180public static SignatureHelper GetPropertySigHelper(Module? mod, Type? returnType, Type[]? parameterTypes)
185public static SignatureHelper GetPropertySigHelper(Module? mod,
192public static SignatureHelper GetPropertySigHelper(Module? mod, CallingConventions callingConvention,
213internal static SignatureHelper GetTypeSigToken(Module module, Type type)
233private SignatureHelper(Module? mod, MdSigCallingConvention callingConvention)
239private SignatureHelper(Module? mod, MdSigCallingConvention callingConvention, int cGenericParameters,
252private SignatureHelper(Module? mod, MdSigCallingConvention callingConvention,
258private SignatureHelper(Module mod, Type type)
266private void Init(Module? mod)
282private void Init(Module? mod, MdSigCallingConvention callingConvention)
288private void Init(Module? mod, MdSigCallingConvention callingConvention, int cGenericParam)