Scalien.ByteRangeParams.StartKey C# (CSharp) Method

StartKey() public method

Specify the start key parameter for iteration.
Iteration will start at start key, or the first key greater than start key.
public StartKey ( byte startKey ) : ByteRangeParams
startKey byte The start key parameter as a byte[].
return ByteRangeParams
        public ByteRangeParams StartKey(byte[] startKey)
        {
            this.startKey = startKey;
            return this;
        }