Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Ramstack.FileProviders/ZipFileProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ namespace Ramstack.FileProviders;
/// <summary>
/// Provides access to files within a ZIP archive.
/// </summary>
/// <remarks>
/// **WARNING:**
/// <para>
/// This class is not thread-safe and is designed to handle only one file read operation at a time.
/// It does not support parallel or simultaneous opening of multiple files.
/// </para>
/// </remarks>
[Obsolete("Deprecated due to thread safety limitations and parallel file access capabilities.")]
public sealed class ZipFileProvider : IFileProvider, IDisposable
{
private readonly ZipArchive _archive;
Expand Down
Loading