NetMQ.Zyre.Zyre.Whispers C# (CSharp) 메소드

Whispers() 공개 메소드

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
리턴 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);
        }