Closed
Description
Currently when uploading a file (i.e. image) to the server, all ParseFile constructors require taking a byte array. This requires me to read in the entire file into memory in order to send it.
Please provide a way for ParseFile to accept a stream (i.e., InputStream or StreamReader) and/or local file path so that the content of the file can be streamed to the server without reading the entire thing into memory.