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//-----------------------------------------------------------------------
8using System;
9
11{
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 {
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 {
42 }
43 }
44
46 public class GlobalContextBOVerifier : ContextBOVerifier<GlobalContextBOVerifier>
47 {
48 public GlobalContextBOVerifier(bool isNew) : base(isNew) { }
49
50 [Insert]
51 protected void DataPortal_Insert()
52 {
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 {
62 }
63 }
64}
override void OnDeserialized(System.Runtime.Serialization.StreamingContext context)
@ Serializable
Prevents updating or inserting until the transaction is complete.
@ Update
Update operation (includes insert, update and delete self).