public byte[] DownloadImage(string userName, string password, string appOrDocRelativePath)
 {
     using (SecureData sd = new SecureData(false, Login(userName, password))){
         return(sd.GetImage(appOrDocRelativePath));
     }
 }