Enum CsModelType
The code factory model types that represent the C# source code type.
Namespace: CodeFactory.DotNet.CSharp
Assembly: CodeFactory.DotNet.dll
Syntax
public enum CsModelType
Fields
Name | Description |
---|---|
Attribute | Model is a attribute implementation. |
AttributeParameter | Model is a attribute parameter implementation. |
AttributeParameterValue | Model stores a parameter value from an attribute. |
Class | Model is a class implementation. |
Delegate | Model is a delegate definition. |
DelegateParameter | Model is a delegate parameter definition. |
DelegateParameterValue | Model is a delegate parameter value. |
Enum | Model stores enumeration definition. |
EnumValue | Model that stores a unique value in an enumeration. |
Event | Model is a event definition. |
Field | Model is a field definition. |
GenericParameter | Model is a generic parameter that belongs to a generic type. |
Interface | Model is a interface implementation. |
Method | Model is a method definition. |
Namespace | Model is a namespace definition. |
Parameter | Model is a parameter definition. |
ParameterDefaultValue | Model that stores default value information for a parameter. |
Property | Model is a property definition. |
Record | Model stores a record implementation. |
RecordStructure | Model stores a record structure implementation. |
Source | Model that hosts all the source models that have been loaded. |
Structure | Model is a structure implementation. |
TupleTypeParameter | Model is a tuple type parameter that belongs to a tuple type. |
Type | Model is a type definition. |
Unknown | The model is currently not know by the C# source type. |
Using | Model is a using statement. |