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
NestingPOCO2.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NestingPOCO2.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 naming clashes of nested classes</summary>
7//-----------------------------------------------------------------------
9using System;
10using System.Collections.Generic;
11using System.Text;
12
14{
15
21 [AutoSerializable]
22 public partial class NestingPOCO2
23 {
24
25 [AutoSerialized]
26 private NestedPOCO _poco = new NestedPOCO() { Value = "Hello" };
27
28 [AutoSerializable]
29 protected internal partial class NestedPOCO
30 {
31
32 public string Value { get; set; }
33
34 }
35
36 public string GetValue()
37 {
38 return _poco.Value;
39 }
40
41 public void SetValue(string value)
42 {
43 _poco.Value = value;
44 }
45
46 }
47}
A second class including a private nested class for which automatic serialization code is to be gener...
Definition: NestingPOCO2.cs:23