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
PropertyDefinitionExtractor.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PropertyDefinitionExtractor.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Extract the definition of a single property of a type for source generation</summary>
7//-----------------------------------------------------------------------
8using Microsoft.CodeAnalysis;
9using Microsoft.CodeAnalysis.CSharp.Syntax;
10using System;
11using System.Collections.Generic;
12using System.Text;
13
15{
16
21 internal static class PropertyDefinitionExtractor
22 {
23
30 public static ExtractedPropertyDefinition ExtractPropertyDefinition(DefinitionExtractionContext extractionContext, PropertyDeclarationSyntax propertyDeclaration)
31 {
32 ExtractedPropertyDefinition propertyDefinition = new ExtractedPropertyDefinition();
33
34 propertyDefinition.PropertyName = GetPropertyName(extractionContext, propertyDeclaration);
35 propertyDefinition.TypeDefinition.TypeName = GetPropertyTypeName(extractionContext, propertyDeclaration);
36 propertyDefinition.TypeDefinition.TypeNamespace = extractionContext.GetTypeNamespace(propertyDeclaration.Type);
37 propertyDefinition.TypeDefinition.IsAutoSerializable = extractionContext.IsTypeAutoSerializable(propertyDeclaration.Type);
38 propertyDefinition.TypeDefinition.ImplementsIMobileObject = extractionContext.DoesTypeImplementIMobileObject(propertyDeclaration.Type);
39
40 return propertyDefinition;
41 }
42
43 #region Private Helper Methods
44
51 private static string GetPropertyName(DefinitionExtractionContext extractionContext, PropertyDeclarationSyntax propertyDeclaration)
52 {
53 return propertyDeclaration.Identifier.ValueText;
54 }
55
62 private static string GetPropertyTypeName(DefinitionExtractionContext extractionContext, PropertyDeclarationSyntax propertyDeclaration)
63 {
64 return propertyDeclaration.Type.ToString();
65 }
66
67 #endregion
68
69 }
70}