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

Echo() public method

public Echo ( string text ) : string
text string
return string
        public string Echo(string text)
        {
            return SendExpectData(Commands.Echo, text.ToUtf8Bytes()).FromUtf8Bytes();
        }
RedisNativeClient