Item Extraction Finished Callback Delegate
Delegate called when extraction of solid block archive item to the supplied stream (see GetItemStreamCallback) is finished.
Definition
Namespace: OpenDiscoverSDK.Interfaces.Extractors
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
C#
public 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.