SharpTox.Core.Tox.FileSeek C# (CSharp) Method

FileSeek() public method

Sends a file seek control command to a friend for a given file transfer.
public FileSeek ( int friendNumber, int fileNumber, long position ) : bool
friendNumber int The friend to send the seek command to.
fileNumber int The file transfer that this command is meant for.
position long The position that the friend should change his stream to.
return bool
        public bool FileSeek(int friendNumber, int fileNumber, long position)
        {
            var error = ToxErrorFileSeek.Ok;
            return FileSeek(friendNumber, fileNumber, position, out error);
        }

Same methods

Tox::FileSeek ( int friendNumber, int fileNumber, long position, ToxErrorFileSeek &error ) : bool