Interface IDataModelDelete
Defines the delete interface for Domain Model objects that need delete.
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IDataModelDelete
Methods
Delete()
Deletes a Domain Model object into the remote data source
Declaration
void Delete()
DeleteAsync()
Deletes a Domain Model object into the remote data source
Declaration
Task DeleteAsync()
Returns
Task
|
DeleteBatch()
Collects the request to delete a Domain Model object into the remote data source
Declaration
void DeleteBatch()
DeleteBatch(Batch)
Collects the request to delete a Domain Model object into the remote data source using a batch
Declaration
void DeleteBatch(Batch batch)
Parameters
Batch
batch
Batch add this request to |
DeleteBatchAsync()
Collects the request to delete a Domain Model object into the remote data source
Declaration
Task DeleteBatchAsync()
Returns
Task
|
DeleteBatchAsync(Batch)
Collects the request to delete a Domain Model object into the remote data source using a batch
Declaration
Task DeleteBatchAsync(Batch batch)
Parameters
Batch
batch
Batch add this request to |
Returns
Task
|