Table of Contents

Interface IReflectionInfo

Namespace
NUnit.Framework.Interfaces
Assembly
nunit.framework.dll

The IReflectionInfo interface is implemented by NUnit wrapper objects that perform reflection.

public interface IReflectionInfo

Methods

GetCustomAttributes<T>(bool)

Returns an array of custom attributes of the specified type applied to this object

T[] GetCustomAttributes<T>(bool inherit) where T : class

Parameters

inherit bool

Returns

T[]

Type Parameters

T

IsDefined<T>(bool)

Returns a value indicating whether an attribute of the specified type is defined on this object.

bool IsDefined<T>(bool inherit) where T : class

Parameters

inherit bool

Returns

bool

Type Parameters

T