public ListFolderResult ListFilesContinue(string cursor) { var lfca = new ListFolderContinueArg() { cursor = cursor }; try { return(PostAndGetJSONData <ListFolderResult>(WebApi.Dropbox.ListFilesContinueUrl(), lfca)); } catch (Exception ex) { HandleDropboxException(ex, false); throw; } }
public ListFolderResult ListFilesContinue(string cursor) { var lfca = new ListFolderContinueArg() { cursor = cursor }; var url = string.Format("{0}/files/list_folder/continue", API_URL); try { return(PostAndGetJSONData <ListFolderResult>(url, lfca)); } catch (Exception ex) { handleDropboxException(ex); throw; } }
public ListFolderResult ListFilesContinue(String cursor) { ListFolderContinueArg lfca = new ListFolderContinueArg(); lfca.cursor = cursor; var url = string.Format("{0}/files/list_folder/continue", API_URL); try { ListFolderResult lfr = PostAndGetJSONData<ListFolderResult>(url, lfca); return lfr; } catch (Exception ex) { handleDropboxException(ex); throw; } }