ServiceStack.Redis.RedisNativeClient.Slowlog C# (CSharp) Метод

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

public Slowlog ( int top ) : object[]
top int
Результат object[]
        public object[] Slowlog(int? top)
        {
            if (top.HasValue)
                return SendExpectDeeplyNestedMultiData(Commands.Slowlog, Commands.Get, top.Value.ToUtf8Bytes());
            else
                return SendExpectDeeplyNestedMultiData(Commands.Slowlog, Commands.Get);
        }
RedisNativeClient