IDataServiceUpdateProvider2 Interface
Defines the methods required to support ServiceActions.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Interface IDataServiceUpdateProvider2 _
Inherits IDataServiceUpdateProvider, IUpdatable
'Usage
Dim instance As IDataServiceUpdateProvider2
public interface IDataServiceUpdateProvider2 : IDataServiceUpdateProvider,
IUpdatable
public interface class IDataServiceUpdateProvider2 : IDataServiceUpdateProvider,
IUpdatable
type IDataServiceUpdateProvider2 =
interface
interface IDataServiceUpdateProvider
interface IUpdatable
end
public interface IDataServiceUpdateProvider2 extends IDataServiceUpdateProvider, IUpdatable
The IDataServiceUpdateProvider2 type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddReferenceToCollection | Adds the specified value to the collection. (Inherited from IUpdatable.) | |
ClearChanges | Cancels a change to the data. (Inherited from IUpdatable.) | |
CreateResource | Creates the resource of the specified type and that belongs to the specified container. (Inherited from IUpdatable.) | |
DeleteResource | Deletes the specified resource. (Inherited from IUpdatable.) | |
GetResource | Gets the resource of the specified type identified by a query and type name. (Inherited from IUpdatable.) | |
GetValue | Gets the value of the specified property on the target object. (Inherited from IUpdatable.) | |
RemoveReferenceFromCollection | Removes the specified value from the collection. (Inherited from IUpdatable.) | |
ResetResource | Resets the resource identified by the parameter resource to its default value. (Inherited from IUpdatable.) | |
ResolveResource | Returns the instance of the resource represented by the specified resource object. (Inherited from IUpdatable.) | |
SaveChanges | Saves all the changes that have been made by using the IUpdatable APIs. (Inherited from IUpdatable.) | |
ScheduleInvokable | Queues up the invokable to be invoked during IUpdatable.SaveChanges(). | |
SetConcurrencyValues | Supplies the eTag value for the given entity resource. (Inherited from IDataServiceUpdateProvider.) | |
SetReference | Sets the value of the specified reference property on the target object. (Inherited from IUpdatable.) | |
SetValue | Sets the value of the property with the specified name on the target resource to the specified property value. (Inherited from IUpdatable.) |
Top