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
SerializableArgumentTests.cs
Go to the documentation of this file.
1
2
using
System;
3
4
namespace
Csla.Analyzers.IntegrationTests
5
{
6
[
Serializable
]
7
public
class
SerializableArgumentTests
8
:
BusinessBase
<SerializableArgumentTests>
9
{
10
[Fetch]
11
private
void
Fetch(
int
x) { }
12
13
[Fetch]
14
private
void
Fetch(
SerializedObject
x) { }
15
16
[Fetch]
17
private
void
Fetch(Guid
id
) { }
18
19
// This should fail because it's not serializable.
20
[Fetch]
21
private
void
Fetch(
NonSerializedObject
x) { }
22
23
[Fetch]
24
private
void
FetchWithInject([Inject]
NonSerializedObject
x) { }
25
26
[FetchChild]
27
private
void
FetchChild(
int
x) { }
28
29
[FetchChild]
30
private
void
FetchChild(
SerializedObject
x) { }
31
32
[FetchChild]
33
private
void
FetchChild(
NonSerializedObject
x) { }
34
}
35
36
public
class
NonSerializedObject
{ }
37
38
[
Serializable
]
39
public
class
SerializedObject
{ }
40
}
Csla.Analyzers.IntegrationTests.NonSerializedObject
Definition:
SerializableArgumentTests.cs:36
Csla.Analyzers.IntegrationTests.SerializableArgumentTests
Definition:
SerializableArgumentTests.cs:9
Csla.Analyzers.IntegrationTests.SerializedObject
Definition:
SerializableArgumentTests.cs:39
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
Csla.Analyzers.IntegrationTests
Definition:
BusinessRuleCases.cs:5
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Generated by
1.9.2