ApiParser.ProgressEventArgs.ProgressEventArgs C# (CSharp) Method

ProgressEventArgs() public method

public ProgressEventArgs ( int current, int total )
current int
total int
        public ProgressEventArgs(int current, int total)
        {
            Current = current;
            Total = total;
        }
ProgressEventArgs