CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IObservableBindingList.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IObservableBindingList.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines additional elements for an</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Core
11{
17 public interface IObservableBindingList
18 {
22 object AddNew();
27 event EventHandler<RemovingItemEventArgs> RemovingItem;
28 }
29}
Defines additional elements for an ObservableCollection as required by CSLA .NET.
object AddNew()
Creates and adds a new item to the collection.
EventHandler< RemovingItemEventArgs > RemovingItem
Event indicating that an item is being removed from the list.