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
//-----------------------------------------------------------------------
8
using
Csla
.
Serialization
;
9
using
System;
10
using
System.Collections.Generic;
11
12
namespace
Csla.Generators.CSharp.TestObjects
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
}
Csla.Generators.CSharp.TestObjects.NestingPOCO
A class including a private nested class for which automatic serialization code is to be generated
Definition:
NestingPOCO.cs:21
Csla.Generators.CSharp.TestObjects.NestingPOCO.SetValue
void SetValue(string value)
Definition:
NestingPOCO.cs:39
Csla.Generators.CSharp.TestObjects.NestingPOCO.GetValue
string GetValue()
Definition:
NestingPOCO.cs:34
Csla.Generators.CSharp.TestObjects
Definition:
AddressPOCO.cs:14
Csla.Serialization
Definition:
AutoNonSerializedAttribute.cs:11
Csla
Definition:
BusinessRuleCases.cs:5
Generated by
1.9.2