4 overrides of IsAuthenticated
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
212public override bool IsAuthenticated => _isAuthenticated;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
72public override bool IsAuthenticated => _isAuthenticated && _mechanism?.IsAuthenticated == true;
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
105public override bool IsAuthenticated => _isAuthenticated;
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
20public override bool IsAuthenticated => false;
2 references to IsAuthenticated
System.Net.Security (2)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
72public override bool IsAuthenticated => _isAuthenticated && _mechanism?.IsAuthenticated == true;
System\Net\Security\NegotiateAuthentication.cs (1)
84public bool IsAuthenticated => _isDisposed ? false : _pal.IsAuthenticated;