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.
▼
CSLA.NET
AnalyzerReleases.Shipped
AnalyzerReleases.Unshipped
CSLA .NET
►
Packages
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Events
Macros
Pages
SerializableTypeTests.cs
Go to the documentation of this file.
1
using
System;
2
3
namespace
Csla.Analyzers.IntegrationTests
4
{
5
// This should have an error because it's not serializable,
6
// even though the base type is.
7
public
class
SomeCriteria
8
:
CriteriaBase
<SomeCriteria>
9
{ }
10
11
// This should have an error because it's not serializable,
12
// even though the base type is.
13
public
class
MyCommandBase
14
:
CommandBase
<MyCommandBase>
15
{
16
public
MyCommandBase
(
int
id
) { }
17
18
public
MyCommandBase
() { }
19
}
20
21
// This should have an error because it's not serializable
22
public
class
ClassIsStereotypeAndIsNotSerializable
23
:
BusinessBase
<ClassIsStereotypeAndIsNotSerializable>
24
{ }
25
26
public
class
ClassIsNotStereotype
{ }
27
28
[
Serializable
]
29
public
class
ClassIsStereotypeAndIsSerializable
30
:
BusinessBase
<ClassIsStereotypeAndIsSerializable>
31
{ }
32
}
Csla.Analyzers.IntegrationTests.ClassIsNotStereotype
Definition:
SerializableTypeTests.cs:26
Csla.Analyzers.IntegrationTests.ClassIsStereotypeAndIsNotSerializable
Definition:
SerializableTypeTests.cs:24
Csla.Analyzers.IntegrationTests.ClassIsStereotypeAndIsSerializable
Definition:
SerializableTypeTests.cs:31
Csla.Analyzers.IntegrationTests.MyCommandBase
Definition:
SerializableTypeTests.cs:15
Csla.Analyzers.IntegrationTests.MyCommandBase.MyCommandBase
MyCommandBase(int id)
Definition:
SerializableTypeTests.cs:16
Csla.Analyzers.IntegrationTests.MyCommandBase.MyCommandBase
MyCommandBase()
Definition:
SerializableTypeTests.cs:18
Csla.Analyzers.IntegrationTests.SomeCriteria
Definition:
SerializableTypeTests.cs:9
Csla.BusinessBase
This is the base class from which most business objects will be derived.
Definition:
BusinessBase.cs:38
Csla.CommandBase
This is the base class from which command objects will be derived.
Definition:
CommandBase.cs:51
Csla.CriteriaBase
Base type from which Criteria classes can be derived in a business class.
Definition:
CriteriaBase.cs:25
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