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

PeerGroups() public method

Return list of groups known through connected peers. The list includes every peer group ever seen by this instance. The list can grow but it can never shrink.
public PeerGroups ( ) : List
return List
        public List<string> PeerGroups()
        {
            _actor.SendFrame("PEER GROUPS");
            var bytes = _actor.ReceiveFrameBytes();
            var result = Serialization.BinaryDeserialize<List<string>>(bytes);
            return result;
        }