Scalien.ByteRangeParams.Prefix C# (CSharp) Метод

Prefix() публичный Метод

Specify the prefix parameter for iteration.
Only keys starting with prefix will be returned by the iteration.
public Prefix ( byte prefix ) : ByteRangeParams
prefix byte The prefix parameter as a byte[].
Результат ByteRangeParams
        public ByteRangeParams Prefix(byte[] prefix)
        {
            this.prefix = prefix;
            return this;
        }