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
NestingPOCO.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NestingPOCO.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Class that can be used for testing serialization behaviour related to nested classes</summary>
7//-----------------------------------------------------------------------
9using System;
10using System.Collections.Generic;
11
13{
14
19 [AutoSerializable]
20 public partial class NestingPOCO
21 {
22
23 [AutoSerialized]
24 private NestedPOCO _poco = new NestedPOCO() { Value = "Hello" };
25
26 [AutoSerializable]
27 protected internal partial class NestedPOCO
28 {
29
30 public string Value { get; set; }
31
32 }
33
34 public string GetValue()
35 {
36 return _poco.Value;
37 }
38
39 public void SetValue(string value)
40 {
41 _poco.Value = value;
42 }
43
44 }
45}
A class including a private nested class for which automatic serialization code is to be generated
Definition: NestingPOCO.cs:21