Class CustomAttributeExtensions
- Namespace
- Stride.Core.Reflection
- Assembly
- Stride.Core.dll
public static class CustomAttributeExtensions
- Inheritance
-
CustomAttributeExtensions
Methods
GetCustomAttributeEx(Assembly, Type)
public static Attribute GetCustomAttributeEx(this Assembly assembly, Type attributeType)
Parameters
Returns
GetCustomAttributeEx<T>(Assembly)
public static T GetCustomAttributeEx<T>(this Assembly assembly) where T : Attribute
Parameters
assembly
Assembly
Returns
- T
Type Parameters
T
GetCustomAttributesEx(Assembly, Type)
public static IEnumerable<Attribute> GetCustomAttributesEx(this Assembly assembly, Type attributeType)
Parameters
Returns
GetCustomAttributesEx<T>(Assembly)
public static IEnumerable<T> GetCustomAttributesEx<T>(this Assembly assembly) where T : Attribute
Parameters
assembly
Assembly
Returns
- IEnumerable<T>
Type Parameters
T