Skip to main content
A newer version of this page is available. .
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.v18.2.dll

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.

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