Enum SignatureComparisonFlags
- Namespace
- AsmResolver.DotNet.Signatures
- Assembly
- AsmResolver.DotNet.dll
Flags for controlling the behavior of SignatureComparer.
[Flags]
public enum SignatureComparisonFlags
Fields
AcceptNewerVersions = 2
If this flag is used, the containing assembly of the second member to compare is allowed to be a newer version than the containing assembly of the first member.
AcceptOlderVersions = 1
If this flag is used, the containing assembly of the second member to compare is allowed to be an older version than the containing assembly of the first member.
ExactVersion = 0
When neither AcceptOlderVersions nor AcceptNewerVersions are specified, the exact version number must match in the comparison of two assembly descriptors.
VersionAgnostic = AcceptOlderVersions | AcceptNewerVersions
If this flag is used, version numbers will be excluded in the comparison of two assembly descriptors.