Table of Contents

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

assembly Assembly
attributeType Type

Returns

Attribute

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

assembly Assembly
attributeType Type

Returns

IEnumerable<Attribute>

GetCustomAttributesEx<T>(Assembly)

public static IEnumerable<T> GetCustomAttributesEx<T>(this Assembly assembly) where T : Attribute

Parameters

assembly Assembly

Returns

IEnumerable<T>

Type Parameters

T