Delta<TEntityType> Constructor

 

Initializes a new instance of Delta<TEntityType>.

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

NameDescription
System_CAPS_pubmethodDelta<TEntityType>()

Initializes a new instance of Delta<TEntityType>.

System_CAPS_pubmethodDelta<TEntityType>(Type^)

Initializes a new instance of Delta<TEntityType>.

System_CAPS_pubmethodDelta<TEntityType>(Type^, IEnumerable<String^>^)

Initializes a new instance of Delta<TEntityType>.

Return to top

Delta<TEntityType> Constructor ()

Initializes a new instance of Delta<TEntityType>.

public:
Delta()
Return to top

Delta<TEntityType> Constructor (Type^)

Initializes a new instance of Delta<TEntityType>.

public:
Delta(
	Type^ entityType
)

Parameters

entityType
Type: System::Type^

The derived entity type for which the changes would be tracked. entityType should be assignable to instances of TEntityType.

Return to top

Delta<TEntityType> Constructor (Type^, IEnumerable<String^>^)

Initializes a new instance of Delta<TEntityType>.

public:
Delta(
	Type^ entityType,
	IEnumerable<String^>^ updatableProperties
)

Parameters

entityType
Type: System::Type^

The derived entity type for which the changes would be tracked. entityType should be assignable to instances of TEntityType.

updatableProperties
Type: System.Collections.Generic::IEnumerable<String^>^

The set of properties that can be updated or reset.

Return to top
Show: