ITypeMemberReference Interface
Provides the base requirements of a type member (method, property, etc.) reference.
public interface ITypeMemberReference : IReflectionDefinition
Properties
IsGenericMethod
Gets whether the current member is a generic method.
bool IsGenericMethod { get; }
Property Value
- bool:
true
if the current member is a generic method; otherwise,false
.
IsGenericMethodDefinition
Gets whether the current member is a generic method definition, from which other generic methods can be constructed.
bool IsGenericMethodDefinition { get; }
Property Value
- bool:
true
if the current member is a generic method definition, from which other generic methods can be constructed; otherwise,false
.
TypeArguments
Gets the collection of generic type arguments, when the current member is a constructed generic method.
ITypeReferenceCollection TypeArguments { get; }
Property Value
- ITypeReferenceCollection:
The collection of generic type arguments, when the current member is a constructed generic method.