Implementation of a test business object using CSLA managed properties backed by fields, and custom serialization logic (requirement of backing managed properties with fields).
More...
|
override void | OnGetChildren (SerializationInfo info, MobileFormatter formatter) |
|
override void | OnSetChildren (SerializationInfo info, MobileFormatter formatter) |
|
override void | OnGetState (SerializationInfo info, StateMode mode) |
|
override void | OnSetState (SerializationInfo info, StateMode mode) |
|
virtual object | GetIdValue () |
| Override this method to return a unique identifying value for this object. More...
|
|
virtual async Task< T > | SaveAsync (bool forceUpdate, object userState, bool isSync) |
| Saves the object to the database. More...
|
|
virtual void | OnSaved (T newObject, Exception e, object userState) |
| Raises the Saved event, indicating that the object has been saved, and providing a reference to the new object instance. More...
|
|
|
static PropertyInfo< P > | RegisterProperty< P > (PropertyInfo< P > info) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (string propertyName) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (string propertyName, RelationshipTypes relationship) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, RelationshipTypes relationship) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (string propertyName, string friendlyName) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (string propertyName, string friendlyName, P defaultValue) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName, P defaultValue) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (string propertyName, string friendlyName, P defaultValue, RelationshipTypes relationship) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static PropertyInfo< P > | RegisterProperty< P > (Expression< Func< T, object > > propertyLambdaExpression, string friendlyName, P defaultValue, RelationshipTypes relationship) |
| Indicates that the specified property belongs to the business object type. More...
|
|
static MethodInfo | RegisterMethod (string methodName) |
| Registers a method for use in Authorization. More...
|
|
static MethodInfo | RegisterMethod (Expression< Action< T > > methodLambdaExpression) |
| Registers a method for use in Authorization. More...
|
|
Implementation of a test business object using CSLA managed properties backed by fields, and custom serialization logic (requirement of backing managed properties with fields).
Definition at line 22 of file Silverlight/Serialization/CustomerContact.cs.