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.
InsertObjectArgs.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="InsertObjectArgs.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Argument object used in the InsertObject event.</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Web
11{
15 public class InsertObjectArgs : EventArgs
16 {
17
18 private System.Collections.IDictionary _values;
19 private int _rowsAffected;
20
32 public int RowsAffected
33 {
34 get { return _rowsAffected; }
35 set { _rowsAffected = value; }
36 }
37
45 public System.Collections.IDictionary Values
46 {
47 get { return _values; }
48 }
49
53 public InsertObjectArgs(System.Collections.IDictionary values)
54 {
55 _values = values;
56 }
57
58 }
59}
Argument object used in the InsertObject event.
int RowsAffected
Gets or sets the number of rows affected while handling this event.
System.Collections.IDictionary Values
The list of data values entered by the user.
InsertObjectArgs(System.Collections.IDictionary values)
Create an instance of the object.