CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
Csla.Test.ChildrenByInterface.IItem Interface Reference
Inheritance diagram for Csla.Test.ChildrenByInterface.IItem:
Csla.Core.IEditableBusinessObject Csla.Core.IBusinessObject Csla.Core.ISupportUndo Csla.Core.IUndoableObject Csla.Core.ITrackStatus Csla.Core.INotifyBusy Csla.Core.INotifyUnhandledAsyncException Csla.Test.ChildrenByInterface.Item1 Csla.Test.ChildrenByInterface.Item2

Additional Inherited Members

- Public Member Functions inherited from Csla.Core.IEditableBusinessObject
void DeleteChild ()
 Called by a parent object to mark the child for deferred deletion. More...
 
void SetParent (IParent parent)
 Used by BusinessListBase as a child object is created to tell the child object about its parent. More...
 
void Delete ()
 Marks the object for deletion. More...
 
- Public Member Functions inherited from Csla.Core.ISupportUndo
void BeginEdit ()
 Starts a nested edit on the object. More...
 
void CancelEdit ()
 Cancels the current edit process, restoring the object's state to its previous values. More...
 
void ApplyEdit ()
 Commits the current edit process. More...
 
- Public Member Functions inherited from Csla.Core.IUndoableObject
void CopyState (int parentEditLevel, bool parentBindingEdit)
 Copies the state of the object and places the copy onto the state stack. More...
 
void UndoChanges (int parentEditLevel, bool parentBindingEdit)
 Restores the object's state to the most recently copied values from the state stack. More...
 
void AcceptChanges (int parentEditLevel, bool parentBindingEdit)
 Accepts any changes made to the object since the last state copy was made. More...
 
- Properties inherited from Csla.Core.IEditableBusinessObject
int EditLevelAdded [getset]
 For internal use only!! More...
 
- Properties inherited from Csla.Core.IBusinessObject
int Identity [get]
 Gets a value representing this object instance's unique identity value within the business object graph. More...
 
- Properties inherited from Csla.Core.IUndoableObject
int EditLevel [get]
 Gets the current edit level of the object. More...
 
- Properties inherited from Csla.Core.ITrackStatus
bool IsValid [get]
 Returns true if the object and its child objects are currently valid, false if the object or any of its child objects have broken rules or are otherwise invalid. More...
 
bool IsSelfValid [get]
 Returns true if the object is currently valid, false if the object has broken rules or is otherwise invalid. More...
 
bool IsDirty [get]
 Returns true if this object's data, or any of its fields or child objects data, has been changed. More...
 
bool IsSelfDirty [get]
 Returns true if this object's data has been changed. More...
 
bool IsDeleted [get]
 Returns true if this object is marked for deletion. More...
 
bool IsNew [get]
 Returns true if this is a new object, false if it is a pre-existing object. More...
 
bool IsSavable [get]
 Returns true if this object is both dirty and valid. More...
 
bool IsChild [get]
 Returns true if this is a child object, false if it is a root object. More...
 
- Properties inherited from Csla.Core.INotifyBusy
bool IsBusy [get]
 Gets a value indicating whether the object, or any of the object's child objects, are busy running an asynchronous operation. More...
 
bool IsSelfBusy [get]
 Gets a value indicating whether the object is busy running an asynchronous operation. More...
 
- Events inherited from Csla.Core.INotifyBusy
BusyChangedEventHandler BusyChanged
 Event raised when the object's busy status changes. More...
 
- Events inherited from Csla.Core.INotifyUnhandledAsyncException
EventHandler< ErrorEventArgsUnhandledAsyncException
 Event indicating that an exception occurred during an asynchronous operation. More...
 

Detailed Description

Definition at line 40 of file ChildInterfaceTests.cs.