15 references to IsAuthenticated
Microsoft.AspNetCore.Authentication.Negotiate (1)
Internal\NegotiateState.cs (1)
52
get => _instance.
IsAuthenticated
;
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.NtAuth.cs (1)
201
if (authContext.
IsAuthenticated
|| !TryGetChallengeDataForScheme(challenge.SchemeName, GetResponseAuthenticationHeaderValues(response, isProxyAuth), out challengeData))
System.Net.Mail (3)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (2)
56
if (!clientContext.
IsAuthenticated
)
77
return new Authorization(resp, clientContext.
IsAuthenticated
);
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (1)
49
if (!clientContext.
IsAuthenticated
)
System.Net.Security (10)
System\Net\Security\NegotiateAuthentication.cs (9)
91
/// authentication was finished (see <see cref="
IsAuthenticated
" />). The
127
/// authentication was finished (see <see cref="
IsAuthenticated
" />). For
144
/// specified by the client after successful authentication (see <see cref="
IsAuthenticated
" />).
166
if (!
IsAuthenticated
|| _isDisposed)
292
if (!
IsAuthenticated
|| _isDisposed)
319
if (!
IsAuthenticated
|| _isDisposed)
347
if (!
IsAuthenticated
|| _isDisposed)
371
if (!
IsAuthenticated
|| _isDisposed)
396
if (!
IsAuthenticated
|| _isDisposed)
System\Net\Security\NegotiateStream.cs (1)
246
private bool HandshakeComplete => _context!.
IsAuthenticated
;