Files
Stationeers-RemoteControl/Vendor/EmbedIO-3.5.2/Files/Internal/MappedResourceInfoExtensions.cs

8 lines
306 B
C#

namespace EmbedIO.Files.Internal
{
internal static class MappedResourceInfoExtensions
{
public static string GetEntityTag(this MappedResourceInfo @this, CompressionMethod compressionMethod)
=> EntityTag.Compute(@this.LastModifiedUtc, @this.Length, compressionMethod);
}
}