예제 #1
0
        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;
            }
        }
예제 #2
0
        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;
            }
        }
예제 #3
0
        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;
            }
        }