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

Publish() public method

public Publish ( string toChannel, byte message ) : long
toChannel string
message byte
return long
        public long Publish(string toChannel, byte[] message)
        {
            return SendExpectLong(Commands.Publish, toChannel.ToUtf8Bytes(), message);
        }
RedisNativeClient