CSLA .NET 10.0.0
A home for your business logic
Loading...
Searching...
No Matches
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.

Properties

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

Detailed Description

Argument object used in the UpdateObject event.

Constructor & Destructor Documentation

◆ UpdateObjectArgs()

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

Creates an instance of the object.

Exceptions
ArgumentNullExceptionkeys , values or oldValues is null.

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.

◆ 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.

◆ RowsAffected

int Csla.Web.UpdateObjectArgs.RowsAffected
getset

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

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

◆ 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.


The documentation for this class was generated from the following file: