Version: 2023.2
言語: 日本語
public static TypeCache.MethodCollection GetMethodsWithAttribute ();
public static TypeCache.MethodCollection GetMethodsWithAttribute (Type attrType);
public static TypeCache.MethodCollection GetMethodsWithAttribute (string assemblyName);
public static TypeCache.MethodCollection GetMethodsWithAttribute (Type attrType, string assemblyName);

パラメーター

attrType Attribute type.
assemblyName Optional assembly name.

戻り値

MethodCollection Returns an unordered MethodInfo collection of methods marked with the T attribute. If assemblyName is specified, returns only methods defined in this assembly.

説明

Retrieves an unordered collection of methods marked with the T attribute.

This method provides fast access to all methods loaded from a given assembly or all Unity domain assemblies and marked with a specific attribute. Methods marked with ancestors of the specified attribute are also included in the result. The order of results is undefined.

using UnityEditor;
using System.Collections.Generic;

public class Example { static void ScanInitializeOnLoadMethods() { var extractedMethods = TypeCache.GetMethodsWithAttribute<InitializeOnLoadMethodAttribute>(); foreach (var m in extractedMethods) { if (m.IsPrivate) continue; //... }

for (int i = 0; i < extractedMethods.Count; ++i) { if (extractedMethods[i].IsPublic) continue; //... } } }

Note: The returned MethodCollection is read-only and thread-safe. The order of MethodInfo in the collection is undefined.