Dropbox .NET SDK
Show / Hide Table of Contents

Class DropboxAppClient

The client which contains endpoints which perform app-auth actions.

Inheritance
object
DropboxClientBase
DropboxAppClient
Implements
IDisposable
Inherited Members
DropboxClientBase.Dispose()
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api
Assembly: Dropbox.Api.dll
Syntax
public sealed class DropboxAppClient : DropboxClientBase, IDisposable

Constructors

View Source

DropboxAppClient(string, string)

Initializes a new instance of the DropboxAppClient class.

Declaration
public DropboxAppClient(string appKey, string appSecret)
Parameters
Type Name Description
string appKey

The Dropbox app key (e.g. consumer key in OAuth).

string appSecret

The Dropbox app secret (e.g. consumer secret in OAuth).

View Source

DropboxAppClient(string, string, DropboxClientConfig)

Initializes a new instance of the DropboxAppClient class.

Declaration
public DropboxAppClient(string appKey, string appSecret, DropboxClientConfig config)
Parameters
Type Name Description
string appKey

The Dropbox app key (e.g. consumer key in OAuth).

string appSecret

The Dropbox app secret (e.g. consumer secret in OAuth).

DropboxClientConfig config

The DropboxClientConfig.

Properties

View Source

Auth

Gets the Auth routes.

Declaration
public AuthAppRoutes Auth { get; }
Property Value
Type Description
AuthAppRoutes
View Source

Check

Gets the Check routes.

Declaration
public CheckAppRoutes Check { get; }
Property Value
Type Description
CheckAppRoutes
View Source

Files

Gets the Files routes.

Declaration
public FilesAppRoutes Files { get; }
Property Value
Type Description
FilesAppRoutes
View Source

Riviera

Gets the Riviera routes.

Declaration
public RivieraAppRoutes Riviera { get; }
Property Value
Type Description
RivieraAppRoutes
View Source

Sharing

Gets the Sharing routes.

Declaration
public SharingAppRoutes Sharing { get; }
Property Value
Type Description
SharingAppRoutes

Implements

IDisposable
  • View Source
In this article
Back to top Dropbox .NET SDK