TypedDelta Class

Represents a Delta that can be used when a backing CLR type exists for the entity type whose changes are tracked.

Inheritance Hierarchy

System.Object
  System.Dynamic.DynamicObject
    System.Web.Http.OData.Delta
      System.Web.Http.OData.TypedDelta
        System.Web.Http.OData.Delta<TEntityType>

Namespace:  System.Web.Http.OData
Assembly:  System.Web.Http.OData (in System.Web.Http.OData.dll)

Syntax

'Declaration
Public MustInherit Class TypedDelta _
    Inherits Delta
'Usage
Dim instance As TypedDelta
public abstract class TypedDelta : Delta
public ref class TypedDelta abstract : public Delta
[<AbstractClassAttribute>]
type TypedDelta =  
    class 
        inherit Delta 
    end
public abstract class TypedDelta extends Delta

The TypedDelta type exposes the following members.

Constructors

  Name Description
Protected method TypedDelta

Top

Properties

  Name Description
Public property EntityType Gets the actual type of the entity for which the changes are tracked.
Public property ExpectedClrType Gets the expected type of the entity for which the changes are tracked.

Top

Methods

  Name Description
Public method Clear Clears the Delta and resets the underlying Entity. (Inherited from Delta.)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetChangedPropertyNames Returns the Properties that have been modified through this Delta as an enumeration of Property Names (Inherited from Delta.)
Public method GetDynamicMemberNames (Inherited from DynamicObject.)
Public method GetHashCode (Inherited from Object.)
Public method GetMetaObject (Inherited from DynamicObject.)
Public method GetType (Inherited from Object.)
Public method GetUnchangedPropertyNames Returns the Properties that have not been modified through this Delta as an enumeration of Property Names (Inherited from Delta.)
Protected method MemberwiseClone (Inherited from Object.)
Public method ToString (Inherited from Object.)
Public method TryBinaryOperation (Inherited from DynamicObject.)
Public method TryConvert (Inherited from DynamicObject.)
Public method TryCreateInstance (Inherited from DynamicObject.)
Public method TryDeleteIndex (Inherited from DynamicObject.)
Public method TryDeleteMember (Inherited from DynamicObject.)
Public method TryGetIndex (Inherited from DynamicObject.)
Public method TryGetMember Overrides the DynamicObject TryGetMember method, so that only the properties of Entity can be got. (Inherited from Delta.)
Public method TryGetPropertyType Attempts to get the Type of the Property called name from the underlying Entity. (Inherited from Delta.)
Public method TryGetPropertyValue Attempts to get the value of the Property called name from the underlying Entity. (Inherited from Delta.)
Public method TryInvoke (Inherited from DynamicObject.)
Public method TryInvokeMember (Inherited from DynamicObject.)
Public method TrySetIndex (Inherited from DynamicObject.)
Public method TrySetMember Overrides the DynamicObject TrySetMember method, so that only the properties of Entity can be set. (Inherited from Delta.)
Public method TrySetPropertyValue Attempts to set the Property called name to the value specified. (Inherited from Delta.)
Public method TryUnaryOperation (Inherited from DynamicObject.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Http.OData Namespace