Version: 2021.1
LanguageEnglish
  • C#

TypeCache.GetTypesWithAttribute

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static TypeCache.TypeCollection GetTypesWithAttribute();

Declaration

public static TypeCache.TypeCollection GetTypesWithAttribute(Type attrType);

Parameters

attrType Attribute type.

Returns

TypeCollection Returns a collection of types.

Description

Retrieves a collection of types marked with the T attribute.

This method provides fast access to all types loaded from Unity domain assemblies and marked with a specific attribute. Types marked with ancestors of the specified attribute are also included in the result.

using UnityEditor;

public class Example { static void ScanTypesWithAttribute() { var extractedTypes = TypeCache.GetTypesWithAttribute<CustomEditor>(); foreach (var m in extractedTypes) { //... } } }

Note: The returned MethodCollection is read-only and thread-safe.