13 references to Fastest
Microsoft.Arcade.Common (1)
ZipArchiveManager.cs (1)
25
=> ZipFile.CreateFromDirectory(directoryPath, archivePath, CompressionLevel.
Fastest
, includeBaseDirectory);
Microsoft.AspNetCore.ResponseCompression (3)
BrotliCompressionProviderOptions.cs (2)
15
/// What level of compression to use for the stream. The default is <see cref="CompressionLevel.
Fastest
"/>.
17
public CompressionLevel Level { get; set; } = CompressionLevel.
Fastest
;
GzipCompressionProviderOptions.cs (1)
17
public CompressionLevel Level { get; set; } = CompressionLevel.
Fastest
;
Microsoft.Build.Tasks.Core (1)
ZipDirectory.cs (1)
159
level = System.IO.Compression.CompressionLevel.
Fastest
;
System.IO.Compression (5)
System\IO\Compression\DeflateZLib\DeflateStream.cs (1)
135
CompressionLevel.
Fastest
=> ZLibNative.CompressionLevel.BestSpeed,
System\IO\Compression\ZipArchiveEntry.cs (3)
1031
4 => CompressionLevel.
Fastest
,
1032
6 => CompressionLevel.
Fastest
,
1052
CompressionLevel.
Fastest
=> 6,
System\IO\Compression\Zstandard\ZstandardUtils.cs (1)
93
CompressionLevel.
Fastest
=> 1,
System.IO.Compression.Brotli (1)
System\IO\Compression\BrotliUtils.cs (1)
19
CompressionLevel.
Fastest
=> 1,
System.IO.Packaging (2)
System\IO\Packaging\ZipPackage.cs (2)
467
compressionLevel = CompressionLevel.
Fastest
;
472
compressionLevel = CompressionLevel.
Fastest
;