Taskling.Blocks.RangeBlocks.RangeBlock.RangeBlock C# (CSharp) Method

RangeBlock() public method

public RangeBlock ( string rangeBlockId, int attempt, long rangeBegin, long rangeEnd, BlockType blockType ) : System
rangeBlockId string
attempt int
rangeBegin long
rangeEnd long
blockType BlockType
return System
        public RangeBlock(string rangeBlockId,
            int attempt,
            long rangeBegin,
            long rangeEnd,
            BlockType blockType)
        {
            RangeBlockId = rangeBlockId;
            Attempt = attempt;
            RangeBegin = rangeBegin;
            RangeEnd = rangeEnd;
            RangeType = blockType;
        }