├── generator
├── requirements-dev.txt
├── generate_routes.py
└── generator.pyproj
├── .github
├── ISSUE_TEMPLATE
│ ├── config.yml
│ ├── feature_request.md
│ ├── question_help.md
│ └── bug_report.md
├── pull_request_template.md
├── dependabot.yml
└── workflows
│ ├── nuget_upload.yml
│ └── spec_update.yml
├── icon.png
├── .gitmodules
├── doc
└── icons
│ └── blue_dropbox_glyph.png
├── dropbox-sdk-dotnet
├── Examples
│ ├── SimpleBlogDemo
│ │ ├── Views
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ ├── _LoginPartial.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ ├── Home
│ │ │ │ ├── Index.cshtml
│ │ │ │ ├── SignIn.cshtml
│ │ │ │ └── Register.cshtml
│ │ │ ├── Blogs
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── Display.cshtml
│ │ │ ├── Web.config
│ │ │ └── Edit
│ │ │ │ ├── Index.cshtml
│ │ │ │ └── Add.cshtml
│ │ ├── Global.asax
│ │ ├── Scripts
│ │ │ ├── _references.js
│ │ │ └── preview.js
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── App_Start
│ │ │ ├── FilterConfig.cs
│ │ │ ├── BundleConfig.cs
│ │ │ └── RouteConfig.cs
│ │ ├── Models
│ │ │ └── UserProfile.cs
│ │ ├── README.md
│ │ ├── Helpers
│ │ │ ├── MaybeRequireHttps.cs
│ │ │ ├── ModelHelpers.cs
│ │ │ └── FlashHelpers.cs
│ │ ├── Content
│ │ │ └── Site.css
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── packages.config
│ │ ├── Global.asax.cs
│ │ └── Controllers
│ │ │ └── BlogsController.cs
│ ├── SimpleBusinessDashboard
│ │ ├── Views
│ │ │ ├── _ViewStart.cshtml
│ │ │ ├── Shared
│ │ │ │ ├── Error.cshtml
│ │ │ │ └── _Layout.cshtml
│ │ │ └── Web.config
│ │ ├── Global.asax
│ │ ├── Images
│ │ │ ├── blue-bg.png
│ │ │ ├── body-bg.png
│ │ │ ├── white-bg.png
│ │ │ ├── dropbox-logo.png
│ │ │ └── dropbox-logo.txt.svg
│ │ ├── Scripts
│ │ │ ├── _references.js
│ │ │ ├── morris-data.js
│ │ │ └── sb-admin-2.js
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ └── glyphicons-halflings-regular.woff
│ │ ├── App_Start
│ │ │ ├── FilterConfig.cs
│ │ │ ├── RouteConfig.cs
│ │ │ └── BundleConfig.cs
│ │ ├── Content
│ │ │ └── morris.css
│ │ ├── README.md
│ │ ├── Global.asax.cs
│ │ ├── Web.Debug.config
│ │ ├── Web.Release.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── packages.config
│ │ └── Helpers
│ │ │ └── FlashHelpers.cs
│ ├── UniversalDemo
│ │ └── UniversalDemo
│ │ │ ├── UniversalDemo.Windows
│ │ │ ├── Assets
│ │ │ │ ├── Logo.scale-100.png
│ │ │ │ ├── SmallLogo.scale-100.png
│ │ │ │ ├── StoreLogo.scale-100.png
│ │ │ │ └── SplashScreen.scale-100.png
│ │ │ ├── Settings.StyleCop
│ │ │ ├── packages.config
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── Package.appxmanifest
│ │ │ ├── DropboxSettings.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ └── MainPage.xaml
│ │ │ ├── UniversalDemo.WindowsPhone
│ │ │ ├── Assets
│ │ │ │ ├── Logo.scale-240.png
│ │ │ │ ├── SmallLogo.scale-240.png
│ │ │ │ ├── StoreLogo.scale-240.png
│ │ │ │ ├── WideLogo.scale-240.png
│ │ │ │ ├── SplashScreen.scale-240.png
│ │ │ │ └── Square71x71Logo.scale-240.png
│ │ │ ├── Settings.StyleCop
│ │ │ ├── packages.config
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── SettingsDialog.xaml
│ │ │ ├── Package.appxmanifest
│ │ │ ├── MainPage.xaml
│ │ │ └── SettingsDialog.xaml.cs
│ │ │ └── UniversalDemo.Shared
│ │ │ ├── App.xaml
│ │ │ ├── Settings.StyleCop
│ │ │ ├── UniversalDemo.Shared.shproj
│ │ │ ├── UniversalDemo.Shared.projitems
│ │ │ ├── ViewModel
│ │ │ └── ViewModelBase.cs
│ │ │ └── BoolToVisibilityConverter.cs
│ ├── OAuthPKCE
│ │ ├── index.html
│ │ ├── packages.config
│ │ ├── Settings.settings
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Settings.Designer.cs
│ ├── OauthBasic
│ │ ├── index.html
│ │ ├── packages.config
│ │ ├── Settings.settings
│ │ ├── App.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Settings.Designer.cs
│ └── SimpleTest
│ │ ├── index.html
│ │ ├── packages.config
│ │ ├── Settings.settings
│ │ ├── App.config
│ │ ├── Properties
│ │ └── AssemblyInfo.cs
│ │ └── Settings.Designer.cs
├── Dropbox.Api
│ ├── dropbox_api_key.snk
│ ├── packages.config
│ ├── stone_summaries.xml
│ ├── app.config
│ ├── Stone
│ │ ├── Empty.cs
│ │ ├── IEncoder.cs
│ │ └── IDecoder.cs
│ ├── Generated
│ │ ├── AuthException.cs
│ │ ├── PathRootException.cs
│ │ ├── AccessException.cs
│ │ ├── RateLimitException.cs
│ │ ├── DropboxTeamClient.cs
│ │ ├── DropboxAppClient.cs
│ │ ├── Auth
│ │ │ └── AuthUserRoutes.cs
│ │ ├── Openid
│ │ │ └── UserInfoArgs.cs
│ │ └── TeamLog
│ │ │ ├── FileAddDetails.cs
│ │ │ ├── FileEditDetails.cs
│ │ │ ├── TfaResetDetails.cs
│ │ │ ├── GroupMovedDetails.cs
│ │ │ ├── NoteSharedDetails.cs
│ │ │ ├── FileDeleteDetails.cs
│ │ │ ├── FileRevertDetails.cs
│ │ │ ├── FilePreviewDetails.cs
│ │ │ └── CreateFolderDetails.cs
│ ├── ApiException.cs
│ ├── Dropbox.Api.csproj
│ ├── Dropbox.Api.nuspec
│ ├── DropboxClientBase.cs
│ ├── DropboxClientConfig.cs
│ └── DropboxAppClient.cs
├── stylecop.json
├── Dropbox.Api.Integration.Tests
│ ├── settings.json.example
│ ├── Dropbox.Api.Integration.Tests.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── MockHttpMessageHandler.cs
├── stylecop.ruleset
├── Dropbox.Api.Unit.Tests
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Dropbox.Api.Unit.Tests.csproj
│ └── StoneTests.cs
└── .editorconfig
├── scripts
├── util.ps1
├── update_version.sh
└── release_note_generator.sh
├── CODE_OF_CONDUCT.md
├── .gitignore
├── LICENSE
└── .gitattributes
/generator/requirements-dev.txt:
--------------------------------------------------------------------------------
1 | stone
2 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
1 | blank_issues_enabled: false
--------------------------------------------------------------------------------
/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dropbox/dropbox-sdk-dotnet/main/icon.png
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "spec"]
2 | path = spec
3 | url = https://github.com/dropbox/dropbox-api-spec.git
4 |
--------------------------------------------------------------------------------
/doc/icons/blue_dropbox_glyph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dropbox/dropbox-sdk-dotnet/main/doc/icons/blue_dropbox_glyph.png
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/SimpleBusinessDashboard/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Dropbox.Api/dropbox_api_key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dropbox/dropbox-sdk-dotnet/main/dropbox-sdk-dotnet/Dropbox.Api/dropbox_api_key.snk
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="SimpleBlogDemo.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/stylecop.json:
--------------------------------------------------------------------------------
1 | {
2 | "settings": {
3 | "documentationRules": {
4 | "companyName": "Dropbox Inc"
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/SimpleBusinessDashboard/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="SimpleBusinessDashboard.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dropbox/dropbox-sdk-dotnet/main/dropbox-sdk-dotnet/Examples/SimpleBlogDemo/Scripts/_references.js
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Dropbox.Api/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
9 | -------------------------------------------------------------------------------- /dropbox-sdk-dotnet/Examples/OauthBasic/index.html: -------------------------------------------------------------------------------- 1 | 2 | 8 |
9 | -------------------------------------------------------------------------------- /dropbox-sdk-dotnet/Examples/SimpleTest/index.html: -------------------------------------------------------------------------------- 1 | 2 | 8 |
9 |
--------------------------------------------------------------------------------
/dropbox-sdk-dotnet/Examples/UniversalDemo/UniversalDemo/UniversalDemo.Windows/Settings.StyleCop:
--------------------------------------------------------------------------------
1 |
8 | 9 |
10 | 11 |