martindevans / MumbleSharp

An implementation of the mumble voice chat protocol in C#
http://martindevans.me
MIT License
93 stars 28 forks source link

Whisper To a Particular User #62

Open mohdimran043 opened 3 years ago

mohdimran043 commented 3 years ago

Hi,

I am looking for a feature or implementation where we can directly send the voice note to a user. Found the below-commented code snippet but the implementation seems to be missing

//At the moment we're sending from the local user, this is kinda stupid. //What we really want is to send to other users, or to channels. Something like: // // _connection.Users.First().SendVoiceWhisper(e.Buffer); // // _connection.Channels.First().SendVoice(e.Buffer, shout: true);