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
Currently, BlazorMsalTokenProvider uses an internal interface called IAccessTokenProviderAccessor . This interface is accessible but internal to Microsoft's implementation and therefore subject to change. See the source:
namespaceMicrosoft.AspNetCore.Components.WebAssembly.Authentication.Internal{/// <summary>/// This is an internal API that supports the Microsoft.AspNetCore.Components.WebAssembly.Authentication/// infrastructure and not subject to the same compatibility standards as public APIs./// It may be changed or removed without notice in any release./// </summary>publicinterfaceIAccessTokenProviderAccessor{/// <summary>/// This is an internal API that supports the Microsoft.AspNetCore.Components.WebAssembly.Authentication/// infrastructure and not subject to the same compatibility standards as public APIs./// It may be changed or removed without notice in any release./// </summary>IAccessTokenProviderTokenProvider{get;}}}
There is an equivalent public interface called IAccessTokenProvider. This does exactly the same thing and is public.
In BlazorMsalTokenProvider it's a drop-in replacement and you need to change the namespace to:
Currently, BlazorMsalTokenProvider uses an internal interface called
IAccessTokenProviderAccessor
. This interface is accessible but internal to Microsoft's implementation and therefore subject to change. See the source:There is an equivalent public interface called
IAccessTokenProvider
. This does exactly the same thing and is public.In
BlazorMsalTokenProvider
it's a drop-in replacement and you need to change the namespace to:The text was updated successfully, but these errors were encountered: