2 references to CheckPasswordCounterName
Microsoft.AspNetCore.Identity (1)
SignInManagerMetrics.cs (1)
35
_checkPasswordCounter = _meter.CreateCounter<long>(
CheckPasswordCounterName
, "count", "The number of check password attempts. Checks that the account is in a state that can log in and that the password is valid using the UserManager.CheckPasswordAsync method.");
Microsoft.AspNetCore.Identity.Test (1)
SignInManagerTest.cs (1)
87
using var checkPasswordSignIn = new MetricCollector<long>(testMeterFactory, "Microsoft.AspNetCore.Identity", SignInManagerMetrics.
CheckPasswordCounterName
);