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
ExtractedPropertyDefinition.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="ExtractedPropertyDefinition.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 property, extracted from the syntax tree provided by Roslyn</summary>
7
//-----------------------------------------------------------------------
8
using
System;
9
using
System.Collections.Generic;
10
using
System.Text;
11
12
namespace
Csla.Generators.CSharp.AutoSerialization
13
{
14
18
public
class
ExtractedPropertyDefinition
:
IMemberDefinition
19
{
20
24
public
string
PropertyName
{
get
;
set
; }
25
29
public
ExtractedMemberTypeDefinition
TypeDefinition
{
get
; } =
new
ExtractedMemberTypeDefinition
();
30
34
string
IMemberDefinition
.
MemberName
=>
PropertyName
;
35
36
}
37
38
}
Csla.Generators.CSharp.AutoSerialization.ExtractedMemberTypeDefinition
The definition of a member's type, extracted from the syntax tree provided by Roslyn
Definition:
ExtractedMemberTypeDefinition.cs:19
Csla.Generators.CSharp.AutoSerialization.ExtractedPropertyDefinition
The definition of a property, extracted from the syntax tree provided by Roslyn
Definition:
ExtractedPropertyDefinition.cs:19
Csla.Generators.CSharp.AutoSerialization.ExtractedPropertyDefinition.PropertyName
string PropertyName
The name of the property
Definition:
ExtractedPropertyDefinition.cs:24
Csla.Generators.CSharp.AutoSerialization.ExtractedPropertyDefinition.TypeDefinition
ExtractedMemberTypeDefinition TypeDefinition
The definition of the type of this property
Definition:
ExtractedPropertyDefinition.cs:29
Csla.Generators.CSharp.AutoSerialization.IMemberDefinition
The contract which a member definition must fulfil
Definition:
IMemberDefinition.cs:19
Csla.Generators.CSharp.AutoSerialization.IMemberDefinition.MemberName
string MemberName
The name of the member
Definition:
IMemberDefinition.cs:24
Csla.Generators.CSharp.AutoSerialization
Definition:
AutoSerializableSyntaxReceiver.cs:15
Generated by
1.9.2