IEdmDeltaDeletedEntityObject Interface

 

Represents an instance of an IEdmChangedObject. Holds the properties necessary to create the ODataDeltaDeletedEntry.

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

Syntax

public interface IEdmDeltaDeletedEntityObject : IEdmChangedObject, 
    IEdmStructuredObject, IEdmObject
public interface class IEdmDeltaDeletedEntityObject : IEdmChangedObject, 
    IEdmStructuredObject, IEdmObject
type IEdmDeltaDeletedEntityObject = 
    interface
        interface IEdmChangedObject
        interface IEdmStructuredObject
        interface IEdmObject
    end
Public Interface IEdmDeltaDeletedEntityObject
    Inherits IEdmChangedObject, IEdmStructuredObject, IEdmObject

Properties

Name Description
System_CAPS_pubproperty DeltaKind

DeltaKind for the objects part of the DeltaFeed Payload. Used to determine which Delta object to create during serialization. (Inherited from IEdmChangedObject.)

System_CAPS_pubproperty Id

The id of the deleted entity (same as the odata.id returned or computed when calling GET on resource), which may be absolute or relative.

System_CAPS_pubproperty Reason

Optional. Either deleted, if the entity was deleted (destroyed), or changed if the entity was removed from membership in the result (i.e., due to a data change).

Methods

Name Description
System_CAPS_pubmethod GetEdmType()

Gets the IEdmTypeReference of this instance.(Inherited from IEdmObject.)

System_CAPS_pubmethod TryGetPropertyValue(String, Object)

Gets the value of the property with the given name. (Inherited from IEdmStructuredObject.)

See Also

System.Web.OData Namespace

Return to top