Class ZstandardLoadOptions
Class ZstandardLoadOptions
Namespace: Aspose.Zip.Zstandard
Assembly: Aspose.Zip.dll (25.7.0)
Options with which Aspose.Zip.Zstandard.ZstandardArchive is loaded from a compressed file. Contains event raised on extraction.
public class ZstandardLoadOptions
Inheritance
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
ZstandardLoadOptions()
public ZstandardLoadOptions()
Properties
CancellationToken
Gets or sets a cancellation token used to cancel the extraction operation.
public CancellationToken CancellationToken { get; set; }
Property Value
Examples
Cancel Zstandard archive extraction after a certain time.
using (CancellationTokenSource cts = new CancellationTokenSource())
{
cts.CancelAfter(TimeSpan.FromSeconds(60));
using (var a = new ZstandardArchive("big.zstd", new ZStandardLoadOptions() { CancellationToken = cts.Token }))
{
try
{
a.Extract("data.bin");
}
catch(OperationCanceledException)
{
Console.WriteLine("Extraction was cancelled after 60 seconds");
}
}
}
```<p>
Using with <code>Task</code>
```csharp
CancellationTokenSource cts = new CancellationTokenSource();
cts.CancelAfter(TimeSpan.FromSeconds(60));
Task t = Task.Run(delegate()
{
var loadOptions = new ZStandardLoadOptions() { CancellationToken = cts.Token };
using (var a = ZstandardArchive("big.zstd", loadOptions))
{
a.ExtractToDirectory("destination");
}
}, cts.Token);
t.ContinueWith(delegate(Task antecedent)
{
if (antecedent.IsCanceled)
{
Console.WriteLine("Extraction was cancelled after 60 seconds");
}
cts.Dispose();
});
```</p>
Cancellation mostly results in some data not being extracted.
#### Remarks
This property exists for .NET Framework 4.0 and above.
### <a id="Aspose_Zip_Zstandard_ZstandardLoadOptions_ExtractionProgressed"></a> ExtractionProgressed
Gets or sets the delegate invoked when some bytes have been extracted.
```csharp
public event EventHandler<progresseventargs> ExtractionProgressed
Event Type
EventHandler < ProgressEventArgs >
Examples
ZstandardArchive archive = new ZstandardArchive("archive.zst",
new ZStandardLoadOptions() { EntryExtractionProgressed = (s, e) => { int percent = (int)((100 * e.ProceededBytes) / length); } })
Remarks
Event sender is the Aspose.Zip.Zstandard.ZstandardArchive instance which extraction is progressed.