-
Notifications
You must be signed in to change notification settings - Fork 36
Methods_T_CodeJam_Reflection_ReflectionExtensions
andrewvk edited this page Mar 30, 2016
·
11 revisions
[This is preliminary documentation and is subject to change.]
The ReflectionExtensions type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
GetCustomAttribute(T) | Returns custom attribute defined on this member, identified by type T, or null if there are no custom attribute of that type. |
![]() ![]() |
GetCustomAttributes(T) | Returns an array of custom attributes defined on this member, identified by type T, or empty array if there are no custom attribute of that type. |
![]() ![]() |
HasCustomAttribute(ICustomAttributeProvider, Type, Boolean) | Returns true if at least one attribute of type attrType specified in member exists. |
![]() ![]() |
HasCustomAttribute(ICustomAttributeProvider, Type, Func(Attribute, Boolean), Boolean) | Returns true if at least one attribute of type attrType specified in member corresponds to predicate. |
![]() ![]() |
HasCustomAttribute(T)(ICustomAttributeProvider, Boolean) | Returns true if at least one attribute of type T specified in member exists. |
![]() ![]() |
HasCustomAttribute(T)(ICustomAttributeProvider, Func(T, Boolean), Boolean) | Returns true if at least one attribute of type T specified in member corresponds to predicate. |
![]() ![]() |
IsInstantiable | Gets a value indicating whether the type can be instantiated. |
![]() ![]() |
IsNullable | Gets a value indicating whether the type is Nullable<> type. |
![]() ![]() |
IsStatic | Gets a value indicating whether the type is declared static. |
![]() ![]() |
IsSubClass | Determines whether the type derives from the specified check. |