Hi,
The AddFormField method basically allows you to add a value that gets posted with the image data to the serverside. On the serverside you can get the field value and then use it for whatever you need. So if it was the ID of the person who's data was scanned you could use it on the serverside to update/insert the data in the database.
To use AddFormField just call it before you call the .Post method. Then on the serverside you can retrieve the field name/data from the post request.