Microsoft.Identity.Client.Platforms.Shared.Desktop.OsBrowser.IUriInterceptor
interface IUriInterceptor
An abstraction over objects that are able to listen to localhost url (e.g. http://localhost:1234)
and to retrieve the authorization response via GET (query params) or POST (form data)
namespace Microsoft.Identity.Client.Platforms.Shared.Desktop.OsBrowser
{
internal interface IUriInterceptor
{
Task<AuthorizationResponse> (int , string , Func<AuthorizationResponse, MessageAndHttpCode> , CancellationToken );
}
}