| Name | Description | |
|---|---|---|
![]() | GetEnumerator | Returns an enumerator that iterates through the collection. |
![]() | ReturnTypes | Select return types of the methods |
![]() | ThatAreAbstract | Only return methods that are abstract |
![]() | ThatAreAsync | Only return methods that are async. |
![]() | ThatAreDecoratedWith<TAttribute> | Only select the methods that are decorated with an attribute of the specified type. |
![]() | ThatAreDecoratedWithOrInherit<TAttribute> | Only select the methods that are decorated with, or inherits from a parent class, an attribute of the specified type. |
![]() | ThatAreNotAbstract | Only return methods that are not abstract |
![]() | ThatAreNotAsync | Only return methods that are not async. |
![]() | ThatAreNotDecoratedWith<TAttribute> | Only select the methods that are not decorated with an attribute of the specified type. |
![]() | ThatAreNotDecoratedWithOrInherit<TAttribute> | Only select the methods that are not decorated with and does not inherit from a parent class, an attribute of the specified type. |
![]() | ThatAreNotStatic | Only return methods that are not static. |
![]() | ThatAreNotVirtual | Only return methods that are not virtual. |
![]() | ThatAreStatic | Only return methods that are static. |
![]() | ThatAreVirtual | Only return methods that are virtual. |
![]() | ThatDoNotReturn<TReturn> | Only select the methods that do not return the specified type |
![]() | ThatReturn<TReturn> | Only select the methods that return the specified type |
![]() | ToArray | The resulting System.Reflection.MethodInfo objects. |

