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"/>. 17public CompressionLevel Level { get; set; } = CompressionLevel.Fastest;
GzipCompressionProviderOptions.cs (1)
17public CompressionLevel Level { get; set; } = CompressionLevel.Fastest;
Microsoft.AspNetCore.StaticAssets.Tests (1)
StaticAssetsIntegrationTests.cs (1)
546using var gzipStream = new GZipStream(fileStream, CompressionLevel.Fastest);
ResponseCompressionSample (1)
Startup.cs (1)
14services.Configure<GzipCompressionProviderOptions>(options => options.Level = CompressionLevel.Fastest);
System.IO.Compression (4)
System\IO\Compression\DeflateZLib\DeflateStream.cs (1)
129CompressionLevel.Fastest => ZLibNative.CompressionLevel.BestSpeed,
System\IO\Compression\ZipArchiveEntry.cs (3)
8244 => CompressionLevel.Fastest, 8256 => CompressionLevel.Fastest, 845CompressionLevel.Fastest => 6,
System.IO.Compression.Brotli (1)
System\IO\Compression\BrotliUtils.cs (1)
20CompressionLevel.Fastest => 1,
System.IO.Packaging (2)
System\IO\Packaging\ZipPackage.cs (2)
467compressionLevel = CompressionLevel.Fastest; 472compressionLevel = CompressionLevel.Fastest;