ServiceStack.Redis.RedisNativeClient.ConfigGet C# (CSharp) Method

ConfigGet() public method

public ConfigGet ( string pattern ) : byte[][]
pattern string
return byte[][]
        public byte[][] ConfigGet(string pattern)
        {
            return SendExpectMultiData(Commands.Config, Commands.Get, pattern.ToUtf8Bytes());
        }
RedisNativeClient