Enum MemberCriteria
Represents bitwise flags that define what kinds of members are requested
Namespace: CilTools.BytecodeAnalysis
Assembly: CilTools.BytecodeAnalysis.dll
Syntax
[Flags]
public enum MemberCriteria
Remarks
External members are members defined in different assembly then the method which references them, not to be
confused with external
keyword in C#. Internal members are members defined in the same assembly as referencing method,
similarly, not to be confused with internal
keyword or InternalCall
attribute. If you specify a combination of flags
that does not match anything (i.e., if you define neither external nor internal members, or neither methods nor fields)
when requesting referenced members, empty collection is returned.
Fields
Name | Description |
---|---|
External | Return external (not from the same assembly as containing method) members |
Fields | Return fields |
Internal | Return internal (from the same assembly as containing method) members |
Methods | Return methods (including constructors) |