ShowIt.ConferenceSession.SendVideoFrame C# (CSharp) Method

SendVideoFrame() public method

public SendVideoFrame ( BufferChunk chunk ) : void
chunk NewTOAPIA.BufferChunk
return void
        public void SendVideoFrame(BufferChunk chunk)
        {
            if (null != VideoChannel)
            {
                VideoChannel.Send(chunk);
            }
        }