Class CustomAttributeExtensions
- Namespace
 - Stride.Core.Reflection
 
- Assembly
 - Stride.Core.dll
 
public static class CustomAttributeExtensions
  - Inheritance
 - 
      objectCustomAttributeExtensions
 
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
assemblyAssembly
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
assemblyAssembly
Returns
- IEnumerable<T>
 
Type Parameters
T