Implements a list that is serializable using the SerializationFormatterFactory.GetFormatter(). More...
Public Member Functions | |
| MobileList () | |
| Creates an instance of the type. More... | |
| MobileList (int capacity) | |
| Creates an instance of the type. More... | |
| MobileList (IEnumerable< T > collection) | |
| Creates an instance of the type. More... | |
Protected Member Functions | |
| virtual void | OnGetState (SerializationInfo info) |
| Override this method to add extra field values to the serialization stream. More... | |
| virtual void | OnGetChildren (SerializationInfo info, MobileFormatter formatter) |
| Override this method to manually serialize child objects contained within the current object. More... | |
| virtual void | OnSetState (SerializationInfo info) |
| Override this method to retrieve extra field values to the serialization stream. More... | |
| virtual void | OnSetChildren (SerializationInfo info, MobileFormatter formatter) |
| Override this method to manually deserialize child objects from data in the serialization stream. More... | |
Implements a list that is serializable using the SerializationFormatterFactory.GetFormatter().
| T | Type of object contained in the list. |
Definition at line 28 of file MobileList.cs.
| Csla.Core.MobileList< T >.MobileList | ( | ) |
Creates an instance of the type.
Definition at line 33 of file MobileList.cs.
| Csla.Core.MobileList< T >.MobileList | ( | int | capacity | ) |
Creates an instance of the type.
| capacity | Capacity of the list. |
Definition at line 38 of file MobileList.cs.
| Csla.Core.MobileList< T >.MobileList | ( | IEnumerable< T > | collection | ) |
Creates an instance of the type.
| collection | Data to add to list. |
Definition at line 43 of file MobileList.cs.
|
protectedvirtual |
Override this method to manually serialize child objects contained within the current object.
| info | Object containing serialized values. |
| formatter | Reference to the current SerializationFormatterFactory.GetFormatter(). |
Definition at line 74 of file MobileList.cs.
|
protectedvirtual |
Override this method to add extra field values to the serialization stream.
| info | Object containing field values. |
Definition at line 62 of file MobileList.cs.
|
protectedvirtual |
Override this method to manually deserialize child objects from data in the serialization stream.
| info | Object containing serialized values. |
| formatter | Reference to the current SerializationFormatterFactory.GetFormatter(). |
Definition at line 117 of file MobileList.cs.
|
protectedvirtual |
Override this method to retrieve extra field values to the serialization stream.
| info | Object containing field values. |
Definition at line 109 of file MobileList.cs.