ItemExtractionFinishedCallback Delegate |
Delegate called when extraction of solid block archive item to the supplied stream (see
GetItemStreamCallback) is finished.
Namespace: OpenDiscoverSDK.Interfaces.ExtractorsAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.6.0 (2025.4.6)
Syntaxpublic delegate void ItemExtractionFinishedCallback(
int index,
ContentResult result,
Stream stream
)
Parameters
- index Int32
-
The zero-offset index of the extracted archive item in ChildDocuments and given by Index property.
- result ContentResult
-
Result of item's extraction operation.
- stream Stream
-
The destination stream that was given by the last callback call to GetItemStreamCallback and to which the decompressed archive item's data was written.
The implementer is responsible for closing the stream.
See Also