2024-06-14 19:06:21 -04:00
|
|
|
|
namespace ReCodeIt.Enums;
|
2024-06-12 18:59:08 -04:00
|
|
|
|
|
2024-06-26 14:45:54 -04:00
|
|
|
|
public enum ENoMatchReason
|
2024-06-12 18:59:08 -04:00
|
|
|
|
{
|
2024-06-28 18:38:03 -04:00
|
|
|
|
AmbiguousWithPreviousMatch,
|
|
|
|
|
AmbiguousNewTypeNames,
|
2024-08-10 04:58:49 -04:00
|
|
|
|
IsPublic,
|
2024-06-12 18:59:08 -04:00
|
|
|
|
IsEnum,
|
|
|
|
|
IsNested,
|
|
|
|
|
IsSealed,
|
2024-08-10 04:58:49 -04:00
|
|
|
|
IsInterface,
|
|
|
|
|
IsStruct,
|
2024-06-12 18:59:08 -04:00
|
|
|
|
IsDerived,
|
|
|
|
|
HasGenericParameters,
|
|
|
|
|
HasAttribute,
|
2024-06-26 14:45:54 -04:00
|
|
|
|
ConstructorParameterCount,
|
2024-06-14 16:18:43 -04:00
|
|
|
|
MethodsInclude,
|
|
|
|
|
MethodsExclude,
|
|
|
|
|
MethodsCount,
|
|
|
|
|
FieldsInclude,
|
|
|
|
|
FieldsExclude,
|
|
|
|
|
FieldsCount,
|
|
|
|
|
PropertiesInclude,
|
|
|
|
|
PropertiesExclude,
|
|
|
|
|
PropertiesCount,
|
|
|
|
|
NestedTypeInclude,
|
|
|
|
|
NestedTypeExclude,
|
|
|
|
|
NestedTypeCount,
|
2024-11-05 14:22:28 -05:00
|
|
|
|
EventsInclude,
|
2024-11-05 14:25:54 -05:00
|
|
|
|
EventsExclude
|
2024-06-12 18:59:08 -04:00
|
|
|
|
}
|