Skip to main content
A newer version of this page is available. .
Tab

DropboxFileSystemProvider.TeamMemberID Property

OBSOLETE

Use the AccountManager class API and the AccountName property instead. For more information, refer to the http://help.devexpress.com/#AspNet/CustomDocument117605(Cloud Storage Account Management) topic.

Specifies a Dropbox ID of a user as a team member.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[Obsolete("Use the AccountManager class API and the AccountName property instead. For more information, refer to the http://help.devexpress.com/#AspNet/CustomDocument117605(Cloud Storage Account Management) topic.")]
public string TeamMemberID { get; set; }

Property Value

Type Description
String

A string value that is the team member ID.

Remarks

Use the TeamMemberID property to provide your application with access to a Dropbox Business account. For a standard Dropbox account, set the TeamMemberID property to String.Empty.

If the FileManagerDropBoxProviderSettings.AccessTokenValue property is specified, a list of team members of the Dropbox Business account can be also accessed using the drop down window of the TeamMemberID property in the Property Window.

Note

The property’s drop down window shows the display names of team members. After a member is selected, its ID is saved to the TeamMemberID property value in the following format : “dbmid:AAC112llkE…”.

ASPxFileManager-TeamMemberID-Designer

<dx:ASPxFileManager ID="ASPxFileManager1" runat="server" ProviderType="Dropbox">
    <SettingsDropbox AccessTokenValue="ZTAmXFti5PAAAA..." TeamMemberID="dbmid:AAC112ll..." />
</dx:ASPxFileManager>

Note

Visual Studio caches the list of the team members once it is loaded. If the list of the team members is updated, reload Visual Studio.

To learn more, see the Dropbox File System Provider topic.

See Also