Exemplo n.º 1
0
        public void JoinVoice(string serverId, string channelId)
        {
            var joinVoice = new TextWebSocketCommands.JoinVoice();

            joinVoice.Payload.ServerId  = serverId;
            joinVoice.Payload.ChannelId = channelId;
            QueueMessage(joinVoice);
        }
Exemplo n.º 2
0
		public void LeaveVoice()
		{
			var joinVoice = new TextWebSocketCommands.JoinVoice();
			QueueMessage(joinVoice);
		}
Exemplo n.º 3
0
		public void JoinVoice(string serverId, string channelId)
		{
			var joinVoice = new TextWebSocketCommands.JoinVoice();
			joinVoice.Payload.ServerId = serverId;
			joinVoice.Payload.ChannelId = channelId;
            QueueMessage(joinVoice);
		}
Exemplo n.º 4
0
        public void LeaveVoice()
        {
            var joinVoice = new TextWebSocketCommands.JoinVoice();

            QueueMessage(joinVoice);
        }