You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
In CustomWebUI flows, it's possible that the process implementing the UI is in another process.
Want to add a few methods to AdalException to support serializing the exception(s) in this case
string ToJsonString() -- serializes the AdalException (or any derived exception) into a json string which can be marshaled across the process boundary.
static AdalException FromJsonString(string json) -- factory method to create the appropriate (possibly derived) AdalException from the serialized json string.
The text was updated successfully, but these errors were encountered:
In CustomWebUI flows, it's possible that the process implementing the UI is in another process.
Want to add a few methods to AdalException to support serializing the exception(s) in this case
string ToJsonString() -- serializes the AdalException (or any derived exception) into a json string which can be marshaled across the process boundary.
static AdalException FromJsonString(string json) -- factory method to create the appropriate (possibly derived) AdalException from the serialized json string.
The text was updated successfully, but these errors were encountered: