Enum ResolutionStatus
- Namespace
- AsmResolver.DotNet
- Assembly
- AsmResolver.DotNet.dll
Provides members describing all possible results of a resolution of an assembly or member.
public enum ResolutionStatus
Fields
AssemblyBadImage = 5Indicates the declaring assembly of the reference to be resolved contained invalid metadata.
AssemblyNotFound = 4Indicates the requested assembly of the reference to be resolved could not be found.
CircularResolutionScope = 3Indicates the reference to be resolved defines a circular resolution scope.
InvalidReference = 1Indicates the reference to be resolved is invalid or incomplete.
MemberNotFound = 8Indicates the requested field or method could not be found in the resolved declaring type.
MissingRuntimeContext = 2Indicates the reference could not be resolved because no runtime context was provided.
ModuleNotFound = 6Indicates the module of the reference to be resolved could not be found.
Success = 0Indicates the resolution was successful.
TypeNotFound = 7Indicates the requested type could not be found in the resolved declaring assembly.