Interface IDataModelCollectionDeleteByIntegerId
When implemented it provides a DeleteById method on the collection
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IDataModelCollectionDeleteByIntegerId
Methods
DeleteById(Int32)
Delete an item from the collection via it's id
Declaration
void DeleteById(int id)
Parameters
System.Int32
id
Id of the item to delete |
DeleteByIdAsync(Int32)
Delete an item from the collection via it's id
Declaration
Task DeleteByIdAsync(int id)
Parameters
System.Int32
id
Id of the item to delete |
Returns
Task
|
DeleteByIdBatch(Batch, Int32)
Delete an item from the collection via it's id
Declaration
void DeleteByIdBatch(Batch batch, int id)
Parameters
Batch
batch
Batch to add the request to |
System.Int32
id
Id of the item to delete |
DeleteByIdBatch(Int32)
Delete an item from the collection via it's id
Declaration
void DeleteByIdBatch(int id)
Parameters
System.Int32
id
Id of the item to delete |
DeleteByIdBatchAsync(Batch, Int32)
Delete an item from the collection via it's id
Declaration
Task DeleteByIdBatchAsync(Batch batch, int id)
Parameters
Batch
batch
Batch to add the request to |
System.Int32
id
Id of the item to delete |
Returns
Task
|
DeleteByIdBatchAsync(Int32)
Delete an item from the collection via it's id
Declaration
Task DeleteByIdBatchAsync(int id)
Parameters
System.Int32
id
Id of the item to delete |
Returns
Task
|