BLL.Service.DropboxService.SetCode C# (CSharp) Method

SetCode() public method

public SetCode ( string code, string error ) : System.Threading.Tasks.Task
code string
error string
return System.Threading.Tasks.Task
        public async Task SetCode(string code, string error)
        {
            // Exchange the Authorization Code with Access/Refresh tokens
            await _client.Core.OAuth2.TokenAsync(code);
        }