IFileOperationProgressSinkPostDeleteItem Method

Performs caller-implemented actions after the delete process for each item is complete.

Definition

Namespace: DevCase.Win32.Interfaces
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
void PostDeleteItem(
	TransferSourceFlags flags,
	IShellItem item,
	HResult result,
	IShellItem newlyCreated
)

Parameters

flags  TransferSourceFlags
bitwise value that contains flags that were used during the delete operation.

Some values can be set or changed during the delete operation.

item  IShellItem
Pointer to an IShellItem that specifies the item that was deleted.
result  HResult
The return value of the delete operation.

Note that this is not the HResult returned by DeleteItem(IShellItem, IFileOperationProgressSink), which simply queues the delete operation. Instead, this is the result of the actual deletion.

newlyCreated  IShellItem
A pointer to an IShellItem that specifies the deleted item, now in the Recycle Bin.

If the item was fully deleted, this value is NULL.

See Also