CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ExtractedTypeDefinition.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ExtractedTypeDefinition.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>The definition of a type, extracted from the syntax tree provided by Roslyn</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Text;
11
13{
14
19 {
20
24 public string Namespace { get; set; }
25
29 public string Scope { get; set; } = "public";
30
34 public string TypeName { get; set; }
35
39 public string TypeKind { get; set; }
40
44 public string FullyQualifiedName { get; set; }
45
49 public IList<ExtractedContainerDefinition> ContainerDefinitions { get; private set; } = new List<ExtractedContainerDefinition>();
50
54 public IList<ExtractedPropertyDefinition> Properties { get; private set; } = new List<ExtractedPropertyDefinition>();
55
59 public IList<ExtractedFieldDefinition> Fields { get; private set; } = new List<ExtractedFieldDefinition>();
60
61 }
62
63}
The definition of a type, extracted from the syntax tree provided by Roslyn
IList< ExtractedPropertyDefinition > Properties
The properties to be included in serialization
string FullyQualifiedName
The fully qualified name of the type, including namespace
string TypeKind
The name of the kind of type being represented
string TypeName
The name of the type, excluding any namespace
IList< ExtractedFieldDefinition > Fields
The fields to be included in serialization
IList< ExtractedContainerDefinition > ContainerDefinitions
The container definitions for this type