Delete Attachment Operation
This operation is used to delete an attachment from a document.
Syntax
public DeleteAttachmentOperation(string documentId, string name, string changeVector = null)
| Parameter | ||
|---|---|---|
| documentId | string | ID of a document containing an attachment |
| name | string | Name of an attachment |
| changeVector | string | Entity changeVector, used for concurrency checks (null to skip check) |
Example
store.Operations.Send(new DeleteAttachmentOperation("orders/1-A", "invoice.pdf"));