Skip to main content
Tab

ResolveAccountEventArgs.Account Property

Gets or sets an account for the account name specified by the ResolveAccountEventArgs.AccountName property.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public AccountBase Account { get; set; }

Property Value

Type Description
AccountBase

An AccountBase object that specifies the account.

Remarks

Use the ResolveAccountEventArgs.AccountName property to get an account name for which the account is to be created.

Example

The following example illustrates how to use the AccountManager.ResolveAccount event.

<dx:ASPxFileManager ID="FileManager" runat="server" ProviderType="Dropbox">
    <Settings RootFolder="~" ThumbnailFolder="~/Thumb" />
    <SettingsDropbox AccountName="DropboxAccount#1" />
</dx:ASPxFileManager>
void Application_Start(object sender, EventArgs e) {
    AccountManager.ResolveAccount += AccountManager_ResolveAccount;
}
void AccountManager_ResolveAccount(object sender, ResolveAccountEventArgs e) {
    if(e.AccountName == "DropboxAccount#1")
        e.Account = new DropboxAccount(e.AccountName, "SecretAccessTokenValue#1");
}
See Also