Files
sharpcompress/src/SharpCompress/Common/FilePartExtractionBeginEventArgs.cs

30 lines
775 B
C#
Raw Normal View History

2015-12-30 11:19:42 +00:00
using System;
namespace SharpCompress.Common
{
2020-05-23 16:27:55 -07:00
public sealed class FilePartExtractionBeginEventArgs : EventArgs
2015-12-30 11:19:42 +00:00
{
2020-05-23 16:27:55 -07:00
public FilePartExtractionBeginEventArgs(string name, long size, long compressedSize)
{
Name = name;
Size = size;
CompressedSize = compressedSize;
}
2015-12-30 11:19:42 +00:00
/// <summary>
/// File name for the part for the current entry
/// </summary>
2020-05-23 16:27:55 -07:00
public string Name { get; }
2015-12-30 11:19:42 +00:00
/// <summary>
/// Uncompressed size of the current entry in the part
/// </summary>
2020-05-23 16:27:55 -07:00
public long Size { get; }
2015-12-30 11:19:42 +00:00
/// <summary>
/// Compressed size of the current entry in the part
/// </summary>
2020-05-23 16:27:55 -07:00
public long CompressedSize { get; }
2015-12-30 11:19:42 +00:00
}
2022-12-20 13:45:47 +00:00
}