CHDKPTPRemote.Session.DownloadFile C# (CSharp) Method

DownloadFile() public method

public DownloadFile ( string filename ) : byte[]
filename string
return byte[]
        public byte[] DownloadFile(string filename)
        {
            byte[] buf;

            _session.CHDK_DownloadFile(filename, out buf);

            return buf;
        }