示例#1
0
        public ToxAvError SendVideo(int callIndex, byte[] frame)
        {
            ThrowIfDisposed();

            if (frame == null)
            {
                throw new ArgumentNullException("frame");
            }

            return(ToxAvFunctions.SendVideo(_toxAv, callIndex, frame, (uint)frame.Length));
        }