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
ContextBOVerifier.server.cs
Go to the documentation of this file.
1
//-----------------------------------------------------------------------
2
// <copyright file="ContextBOVerifier.server.cs" company="Marimer LLC">
3
// Copyright (c) Marimer LLC. All rights reserved.
4
// Website: https://cslanet.com
5
// </copyright>
6
// <summary>no summary</summary>
7
//-----------------------------------------------------------------------
8
using
System;
9
10
namespace
Csla.Testing.Business.ApplicationContext
11
{
12
[
Serializable
]
13
public
class
ClientContextBOVerifier
:
ContextBOVerifier
<ClientContextBOVerifier>
14
{
15
private
static
int
_dummy = 0;
16
//protected static PropertyInfo<string> InhReceivedContextValueProperty =
17
// RegisterProperty<string>(ReceivedContextValueProperty);
18
19
public
ClientContextBOVerifier
(
bool
isNew): base(isNew)
20
{
21
_dummy = _dummy + 0;
22
}
23
24
protected
override
void
OnDeserialized
(System.Runtime.Serialization.StreamingContext context)
25
{
26
_dummy = 0;
27
base.OnDeserialized(context);
28
}
29
30
[Insert]
31
protected
void
DataPortal_Insert
()
32
{
33
SetReceivedContextValuePropertyFrom
(
Contexts
.Client);
34
}
35
36
//DataPortal_Update is used to verify that the ClientContext["MSG"]
37
//changed on the server does not change the value on the client
38
[
Update
]
39
protected
void
DataPortal_Update
()
40
{
41
SetContextValueModified
(
Contexts
.Client);
42
}
43
}
44
45
[
Serializable
]
46
public
class
GlobalContextBOVerifier
:
ContextBOVerifier
<GlobalContextBOVerifier>
47
{
48
public
GlobalContextBOVerifier
(
bool
isNew) : base(isNew) { }
49
50
[Insert]
51
protected
void
DataPortal_Insert
()
52
{
53
SetReceivedContextValuePropertyFrom
(
Contexts
.Global);
54
}
55
56
//DataPortal_Update is used to verify that the ClientContext["MSG"]
57
//changed on the server does not change the value on the client
58
[
Update
]
59
protected
void
DataPortal_Update
()
60
{
61
SetContextValueModified
(
Contexts
.Global);
62
}
63
}
64
}
Csla.Testing.Business.ApplicationContext.ClientContextBOVerifier
Definition:
ContextBOVerifier.server.cs:14
Csla.Testing.Business.ApplicationContext.ClientContextBOVerifier.DataPortal_Update
void DataPortal_Update()
Definition:
ContextBOVerifier.server.cs:39
Csla.Testing.Business.ApplicationContext.ClientContextBOVerifier.ClientContextBOVerifier
ClientContextBOVerifier(bool isNew)
Definition:
ContextBOVerifier.server.cs:19
Csla.Testing.Business.ApplicationContext.ClientContextBOVerifier.DataPortal_Insert
void DataPortal_Insert()
Definition:
ContextBOVerifier.server.cs:31
Csla.Testing.Business.ApplicationContext.ClientContextBOVerifier.OnDeserialized
override void OnDeserialized(System.Runtime.Serialization.StreamingContext context)
Definition:
ContextBOVerifier.server.cs:24
Csla.Testing.Business.ApplicationContext.ContextBOVerifier
Definition:
ContextBOVerifier.cs:16
Csla.Testing.Business.ApplicationContext.ContextBOVerifier< ClientContextBOVerifier >::SetContextValueModified
void SetContextValueModified(Contexts selectedContext)
Definition:
ContextBOVerifier.cs:66
Csla.Testing.Business.ApplicationContext.ContextBOVerifier< ClientContextBOVerifier >::SetReceivedContextValuePropertyFrom
void SetReceivedContextValuePropertyFrom(Contexts selectedContext)
Definition:
ContextBOVerifier.cs:55
Csla.Testing.Business.ApplicationContext.GlobalContextBOVerifier
Definition:
ContextBOVerifier.server.cs:47
Csla.Testing.Business.ApplicationContext.GlobalContextBOVerifier.GlobalContextBOVerifier
GlobalContextBOVerifier(bool isNew)
Definition:
ContextBOVerifier.server.cs:48
Csla.Testing.Business.ApplicationContext.GlobalContextBOVerifier.DataPortal_Update
void DataPortal_Update()
Definition:
ContextBOVerifier.server.cs:59
Csla.Testing.Business.ApplicationContext.GlobalContextBOVerifier.DataPortal_Insert
void DataPortal_Insert()
Definition:
ContextBOVerifier.server.cs:51
Csla.Testing.Business.ApplicationContext
Definition:
ContextBOVerifier.cs:13
Csla.Testing.Business.ApplicationContext.Contexts
Contexts
Definition:
ContextBOVerifier.cs:85
Csla.TransactionIsolationLevel.Serializable
@ Serializable
Prevents updating or inserting until the transaction is complete.
Csla.DataPortalOperations.Update
@ Update
Update operation (includes insert, update and delete self).
Generated by
1.9.2