Discord.Net.WebSockets.VoiceSocket.SendPCMFrames C# (CSharp) Method

SendPCMFrames() public method

public SendPCMFrames ( byte data, int offset, int count ) : void
data byte
offset int
count int
return void
        public void SendPCMFrames(byte[] data, int offset, int count)
        {
            _sendBuffer.Push(data, offset, count, CancelToken);
        }
        public void ClearPCMFrames()