Implementing ASP auth module
This commit is contained in:
20
DotBased.ASP.Auth/BasedAuthenticationStateProvider.cs
Normal file
20
DotBased.ASP.Auth/BasedAuthenticationStateProvider.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using DotBased.Logging;
|
||||
using Microsoft.AspNetCore.Components.Authorization;
|
||||
|
||||
namespace DotBased.ASP.Auth;
|
||||
|
||||
public class BasedAuthenticationStateProvider : AuthenticationStateProvider
|
||||
{
|
||||
public BasedAuthenticationStateProvider()
|
||||
{
|
||||
_logger = LogService.RegisterLogger(typeof(BasedAuthenticationStateProvider));
|
||||
}
|
||||
|
||||
private ILogger _logger;
|
||||
|
||||
public override Task<AuthenticationState> GetAuthenticationStateAsync()
|
||||
{
|
||||
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user