This is the base class from which readonly collections of readonly objects should be derived.
More...
|
| | ReadOnlyBindingListBase () |
| | Creates an instance of the object. More...
|
| |
| virtual void | Initialize () |
| | Override this method to set up event handlers so user code in a partial class can respond to events raised by generated code. More...
|
| |
| virtual object | GetClone () |
| | Creates a clone of the object. More...
|
| |
| virtual void | DataPortal_OnDataPortalInvoke (DataPortalEventArgs e) |
| | Called by the server-side DataPortal prior to calling the requested DataPortal_xyz method. More...
|
| |
| virtual void | DataPortal_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
| | Called by the server-side DataPortal after calling the requested DataPortal_xyz method. More...
|
| |
| virtual void | DataPortal_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
| | Called by the server-side DataPortal if an exception occurs during data access. More...
|
| |
| virtual void | Child_OnDataPortalInvoke (DataPortalEventArgs e) |
| | Called by the server-side DataPortal prior to calling the requested DataPortal_XYZ method. More...
|
| |
| virtual void | Child_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
| | Called by the server-side DataPortal after calling the requested DataPortal_XYZ method. More...
|
| |
| virtual void | Child_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
| | Called by the server-side DataPortal if an exception occurs during data access. More...
|
| |
| override void | SetLoadListMode (bool enabled) |
| | Sets the LoadListMode for the collection More...
|
| |
| | ReadOnlyBindingList () |
| | Creates an instance of the object. More...
|
| |
| override void | ClearItems () |
| | Prevents clearing the collection. More...
|
| |
| override object | AddNewCore () |
| | Prevents insertion of items into the collection. More...
|
| |
| override void | InsertItem (int index, C item) |
| | Prevents insertion of items into the collection. More...
|
| |
| override void | RemoveItem (int index) |
| | Removes the item at the specified index if the collection is not in readonly mode. More...
|
| |
| override void | SetItem (int index, C item) |
| | Replaces the item at the specified index with the specified item if the collection is not in readonly mode. More...
|
| |
| override void | OnGetState (Csla.Serialization.Mobile.SerializationInfo info) |
| | Override this method to insert your field values into the MobileFormatter serialzation stream. More...
|
| |
| override void | OnSetState (Csla.Serialization.Mobile.SerializationInfo info) |
| | Override this method to retrieve your field values from the MobileFormatter serialzation stream. More...
|
| |
| override void | OnSetChildren (Csla.Serialization.Mobile.SerializationInfo info, Csla.Serialization.Mobile.MobileFormatter formatter) |
| | Override this method to retrieve your child object references from the MobileFormatter serialzation stream. More...
|
| |
| void | OnRemovingItem (T removedItem) |
| | Raise the RemovingItem event. More...
|
| |
| override void | RemoveItem (int index) |
| | Remove the item at the specified index. More...
|
| |
| virtual void | OnBusyChanged (BusyChangedEventArgs args) |
| | Override this method to be notified when the IsBusy property has changed. More...
|
| |
| void | OnBusyChanged (string propertyName, bool busy) |
| | Raises the BusyChanged event for a specific property. More...
|
| |
| virtual void | OnUnhandledAsyncException (ErrorEventArgs error) |
| | Method invoked when an unhandled async exception has occurred. More...
|
| |
| void | OnUnhandledAsyncException (object originalSender, Exception error) |
| | Raises the UnhandledAsyncException event. More...
|
| |
| override void | InsertItem (int index, T item) |
| | Invoked when an item is inserted into the list. More...
|
| |
| virtual void | OnAddEventHooks (T item) |
| | Method invoked when events are hooked for a child object. More...
|
| |
| virtual void | OnRemoveEventHooks (T item) |
| | Method invoked when events are unhooked for a child object. More...
|
| |
| virtual void | OnDeserialized () |
| | This method is called on a newly deserialized object after deserialization is complete. More...
|
| |
| virtual void | OnChildChanged (ChildChangedEventArgs e) |
| | Raises the ChildChanged event, indicating that a child object has been changed. More...
|
| |
| virtual void | Child_PropertyChanged (object sender, PropertyChangedEventArgs e) |
| | Handles any PropertyChanged event from a child object and echoes it up as a ChildChanged event. More...
|
| |
This is the base class from which readonly collections of readonly objects should be derived.
- Template Parameters
-
| T | Type of the list class. |
| C | Type of child objects contained in the list. |
Definition at line 42 of file ReadOnlyBindingListBase.cs.