In This Article

ITypeMemberReference Interface

Provides the base requirements of a type member (method, property, etc.) reference.

public interface ITypeMemberReference : IReflectionDefinition

Properties

IsGenericMethod

Indicates whether the current member is a generic method.

bool IsGenericMethod { get; }

Property Value

bool

IsGenericMethodDefinition

Indicates whether the current member is a generic method definition, from which other generic methods can be constructed.

bool IsGenericMethodDefinition { get; }

Property Value

bool

TypeArguments

The collection of generic type arguments, when the current member is a constructed generic method.

ITypeReferenceCollection TypeArguments { get; }

Property Value

ITypeReferenceCollection

Inherited Members

Extension Methods