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