IDelta Interface

 

IDelta allows and tracks changes to an object.

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

Syntax

public interface IDelta
public interface class IDelta
type IDelta = interface end
Public Interface IDelta

Methods

Name Description
System_CAPS_pubmethod Clear()

Clears the IDelta.

System_CAPS_pubmethod GetChangedPropertyNames()

Returns the Properties that have been modified through this IDelta as an enumerable of Property Names

System_CAPS_pubmethod GetUnchangedPropertyNames()

Returns the Properties that have not been modified through this IDelta as an enumerable of Property Names

System_CAPS_pubmethod TryGetPropertyType(String, Type)

Attempts to get the Type of the Property called name from the underlying Entity.

System_CAPS_pubmethod TryGetPropertyValue(String, Object)

Attempts to get the value of the Property called name from the underlying Entity.

System_CAPS_pubmethod TrySetPropertyValue(String, Object)

Attempts to set the Property called name to the value specified.

See Also

System.Web.Http.OData Namespace

Return to top