Scalien.ByteRangeParams.EndKey C# (CSharp) 메소드

EndKey() 공개 메소드

Specify the end key parameter for iteration
Iteration will stop at end key, or the first key greater than end key.
public EndKey ( byte endKey ) : ByteRangeParams
endKey byte The end key parameter as a byte[].
리턴 ByteRangeParams
        public ByteRangeParams EndKey(byte[] endKey)
        {
            this.endKey = endKey;
            return this;
        }