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.
RemovingItemEventArgs.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="RemovingItemEventArgs.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Contains event data for the RemovingItem</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Core
11{
16 public class RemovingItemEventArgs : EventArgs
17 {
18 private object _removingItem;
19
24 public object RemovingItem
25 {
26 get { return _removingItem; }
27 }
28
36 public RemovingItemEventArgs(object removingItem)
37 {
38 _removingItem = removingItem;
39 }
40 }
41}
Contains event data for the RemovingItem event.
RemovingItemEventArgs(object removingItem)
Create an instance of the object.
object RemovingItem
Gets a reference to the item that was removed from the list.