Scalien.ByteRangeParams.Count C# (CSharp) Method

Count() public method

Specify the count parameter for iteration
Iteration will stop after count elements.
public Count ( uint count ) : ByteRangeParams
count uint The count parameter.
return ByteRangeParams
        public ByteRangeParams Count(uint count)
        {
            this.count = count;
            return this;
        }