f52aa6123b
Replaces generic RawType with ByteDocument in downloaders and context classes, simplifying type usage. Adds builder classes for FailurePredicateOptions, FragmentOptions, SkipPredicateOptions, and UnitDownloaderOptions to improve configuration flexibility. Introduces DownloadTarget enum and SkipPredicate delegate for more granular download control. Refactors Fluent API interfaces and implementations to remove RawType generics and streamline usage. Adds Playwright and Stealth download strategies for extensibility.
6 lines
159 B
C#
6 lines
159 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Beam.Models;
|
|
|
|
public delegate bool SkipPredicate<T>(string link, [NotNullWhen(true)] out T defaultValue);
|