This documentation is archived and is not being maintained.
TypedDelta Class
Represents a Delta that can be used when a backing CLR type exists for the entity type whose changes are tracked.
Namespace:
System.Web.ODataAssembly:
System.Web.OData (in System.Web.OData.dll)
public ref class TypedDelta abstract : Delta
| Name | Description |
|---|
 | EntityType | Gets the actual type of the entity for which the changes are tracked. |
 | ExpectedClrType | Gets the expected type of the entity for which the changes are tracked. |
| Name | Description |
|---|
 | Clear() |
Clears the Delta and resets the underlying Entity.
(Inherited from Delta.) |
 | Equals(Object^) | |
 | Finalize() | |
 | GetChangedPropertyNames() |
Returns the Properties that have been modified through this Delta as an
enumeration of Property Names
(Inherited from Delta.) |
 | GetDynamicMemberNames() | |
 | GetHashCode() | |
 | GetMetaObject(Expression^) | |
 | GetType() | |
 | GetUnchangedPropertyNames() |
Returns the Properties that have not been modified through this Delta as an
enumeration of Property Names
(Inherited from Delta.) |
 | MemberwiseClone() | |
 | ToString() | |
 | TryBinaryOperation(BinaryOperationBinder^, Object^, Object^) | |
 | TryConvert(ConvertBinder^, Object^) | |
 | TryCreateInstance(CreateInstanceBinder^, array<Object^>^, Object^) | |
 | TryDeleteIndex(DeleteIndexBinder^, array<Object^>^) | |
 | TryDeleteMember(DeleteMemberBinder^) | |
 | TryGetIndex(GetIndexBinder^, array<Object^>^, Object^) | |
 | TryGetMember(GetMemberBinder^, Object^) |
Overrides the DynamicObject TryGetMember method, so that only the properties
of Entity can be got.
(Inherited from Delta.) |
 | TryGetPropertyType(String^, Type^) |
Attempts to get the Type of the Property called name from the underlying Entity.
Only properties that exist on Entity can be retrieved.
Both modified and unmodified properties can be retrieved.
(Inherited from Delta.) |
 | TryGetPropertyValue(String^, Object^) |
Attempts to get the value of the Property called name from the underlying Entity.
Only properties that exist on Entity can be retrieved.
Both modified and unmodified properties can be retrieved.
(Inherited from Delta.) |
 | TryInvoke(InvokeBinder^, array<Object^>^, Object^) | |
 | TryInvokeMember(InvokeMemberBinder^, array<Object^>^, Object^) | |
 | TrySetIndex(SetIndexBinder^, array<Object^>^, Object^) | |
 | TrySetMember(SetMemberBinder^, Object^) |
Overrides the DynamicObject TrySetMember method, so that only the properties
of Entity can be set.
(Inherited from Delta.) |
 | TrySetPropertyValue(String^, Object^) |
Attempts to set the Property called name to the value specified.
Only properties that exist on Entity can be set.
If there is a type mismatch the request will fail.
(Inherited from Delta.) |
 | TryUnaryOperation(UnaryOperationBinder^, Object^) | |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Return to top