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