Files
sharpcompress/SharpCompress/Common/CompressedBytesReadEventArgs.cs

17 lines
492 B
C#
Raw Normal View History

2013-04-07 10:58:58 +01:00
using System;
namespace SharpCompress.Common
{
public class CompressedBytesReadEventArgs : EventArgs
{
/// <summary>
/// Compressed bytes read for the current entry
/// </summary>
public long CompressedBytesRead { get; internal set; }
/// <summary>
/// Current file part read for Multipart files (e.g. Rar)
/// </summary>
public long CurrentFilePartCompressedBytesRead { get; internal set; }
}
2013-04-28 12:32:55 +01:00
}