Kinds of code references (ICodeReference).
Namespace: PostSharp.Reflection
Assembly: PostSharp.dll
Syntax
public enum CodeReferenceKind
Fields
Name | Description |
---|---|
MemberType | Member type (field or property type, method return type, or parameter type). The member type is the ReferencedDeclaration. See MemberTypeCodeReference. |
MethodUsage | Operand of an instruction in a method body. The ReferencingDeclaration is the method. See MethodUsageCodeReference. |
None | No code reference. |
TypeInheritance | Type inheritance. The base type is the ReferencedDeclaration; the child type is the ReferencingDeclaration. See TypeInheritanceCodeReference. |