System.Reflection.TypeExtensions
Specifies flags that control binding and the way in which the search for members and types is conducted by reflection.
Specifies that only members declared at the level of the supplied type's hierarchy should be considered. Inherited members are not considered.
Specifies that public and protected static members up the hierarchy should be returned. Private static members in inherited classes are not returned. Static members include fields, methods, events, and properties. Nested types are not returned.
Specifies that the case of the member name should not be considered when binding.
Specifies that instance members are to be included in the search.
Specifies that non-public members are to be included in the search.
Specifies that public members are to be included in the search.
Specifies that static members are to be included in the search.