NetMQ.Zyre.Zyre.Whispers C# (CSharp) Method

Whispers() public method

public Whispers ( System.Guid peer, string format ) : void
peer System.Guid the peer who gets the message
format string the format string for the value
return void
        public void Whispers(Guid peer, string format, params object[] args)
        {
            var value = string.Format(format, args);
            _actor.SendMoreFrame("WHISPER").SendMoreFrame(peer.ToByteArray()).SendFrame(value);
        }