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.
MockMobileList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="MockMobileList.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;
9using System.Net;
10using System.Windows;
11#if !__ANDROID__
12using System.Windows.Controls;
13using System.Windows.Documents;
14using System.Windows.Ink;
15using System.Windows.Input;
16using System.Windows.Media;
17using System.Windows.Media.Animation;
18using System.Windows.Shapes;
19#endif
20using Csla;
22
24{
26 public class MockMobileList : Csla.Core.MobileBindingList<MockReadOnly>
27 {
29 {
30 this.ListChanged += (o, e) => {this.HasRaisedOnListChanged = true;};
31 }
32
33 public bool HasRaisedOnListChanged { get; set; }
34 }
35}
@ Serializable
Prevents updating or inserting until the transaction is complete.