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.
Csla.Web.UpdateObjectArgs Class Reference

Argument object used in the UpdateObject event. More...

Inheritance diagram for Csla.Web.UpdateObjectArgs:

Public Member Functions

 UpdateObjectArgs (System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Collections.IDictionary oldValues)
 Creates an instance of the object. More...
 

Properties

int RowsAffected [getset]
 Gets or sets the number of rows affected while handling this event. More...
 
System.Collections.IDictionary Keys [get]
 The list of key values entered by the user. More...
 
System.Collections.IDictionary Values [get]
 The list of data values entered by the user. More...
 
System.Collections.IDictionary OldValues [get]
 The list of old data values maintained by data binding. More...
 

Detailed Description

Argument object used in the UpdateObject event.

Definition at line 15 of file UpdateObjectArgs.cs.

Constructor & Destructor Documentation

◆ UpdateObjectArgs()

Csla.Web.UpdateObjectArgs.UpdateObjectArgs ( System.Collections.IDictionary  keys,
System.Collections.IDictionary  values,
System.Collections.IDictionary  oldValues 
)

Creates an instance of the object.

Definition at line 80 of file UpdateObjectArgs.cs.

Property Documentation

◆ Keys

System.Collections.IDictionary Csla.Web.UpdateObjectArgs.Keys
get

The list of key values entered by the user.

It is up to the event handler in the web page to take the list of values, put them into a business object and to save that object into the database.

Definition at line 47 of file UpdateObjectArgs.cs.

◆ OldValues

System.Collections.IDictionary Csla.Web.UpdateObjectArgs.OldValues
get

The list of old data values maintained by data binding.

It is up to the event handler in the web page to take the list of values, put them into a business object and to save that object into the database.

Definition at line 72 of file UpdateObjectArgs.cs.

◆ RowsAffected

int Csla.Web.UpdateObjectArgs.RowsAffected
getset

Gets or sets the number of rows affected while handling this event.

Returns

The code handling the event should set this value to indicate the number of rows affected by the operation.

Definition at line 34 of file UpdateObjectArgs.cs.

◆ Values

System.Collections.IDictionary Csla.Web.UpdateObjectArgs.Values
get

The list of data values entered by the user.

It is up to the event handler in the web page to take the list of values, put them into a business object and to save that object into the database.

Definition at line 59 of file UpdateObjectArgs.cs.