1
Answer

access denied error message when try to show two message dia

rasha assi

rasha assi

11y
2.8k
1


I'm getting access denied error message when try to show two message dialogs at the same time.

Case: I'm calling two async service call's and showing service error message response to MessageDialog.

In above case, If I don't have internet connection two message dialog throwing same time and getting "Access Denied" error message.

I'm using below code for showing error message:

MessageDialog dialog = new MessageDialog(responseBase.error.Description, responseBase.error.Title);
await dialog.ShowAsync();
Answers (1)