Class DropboxStorageClient
Dropbox cloud storage client.
Inherited Members
Namespace: FastReport.Cloud.StorageClient.Dropbox
Assembly: FastReport.dll
Syntax
public class DropboxStorageClient : CloudStorageClient
Constructors
DropboxStorageClient()
Initializes a new instance of the DropboxStorageClient class.
Declaration
public DropboxStorageClient()
DropboxStorageClient(String)
Initializes a new instance of the DropboxStorageClient class.
Declaration
public DropboxStorageClient(string accessToken)
Parameters
Type | Name | Description |
---|---|---|
System.String | accessToken | The Dropbox application access token. |
Fields
FILES_PUT_URL_BASE
The base URL for files_put command.
Declaration
public const string FILES_PUT_URL_BASE = "https://content.dropboxapi.com/2/files/upload"
Field Value
Type | Description |
---|---|
System.String |
Properties
AccessToken
Gets or sets the application access token.
Declaration
public string AccessToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
SaveMemoryStream(MemoryStream)
Saves a memory stream to cloud.
Declaration
protected override void SaveMemoryStream(MemoryStream ms)
Parameters
Type | Name | Description |
---|---|---|
System.IO.MemoryStream | ms | The memory stream that should be saved. |