34 references to Completed
Microsoft.AspNetCore.Authentication.Negotiate (1)
Internal\NegotiateState.cs (1)
24
if (authStatus == NegotiateAuthenticationStatusCode.
Completed
||
System.Net.Mail (4)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (3)
61
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
&&
122
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
168
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (1)
43
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
&&
System.Net.Security (29)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (4)
699
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
777
return NegotiateAuthenticationStatusCode.
Completed
;
804
return NegotiateAuthenticationStatusCode.
Completed
;
830
return NegotiateAuthenticationStatusCode.
Completed
;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (6)
180
statusCode != NegotiateAuthenticationStatusCode.
Completed
)
327
statusCode != NegotiateAuthenticationStatusCode.
Completed
)
345
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
357
statusCode = state == NegState.RequestMic ? NegotiateAuthenticationStatusCode.ContinueNeeded : NegotiateAuthenticationStatusCode.
Completed
;
358
_isAuthenticated = statusCode == NegotiateAuthenticationStatusCode.
Completed
;
395
NegState.AcceptCompleted => NegotiateAuthenticationStatusCode.
Completed
,
System\Net\NegotiateAuthenticationPal.Unix.cs (6)
317
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
355
return NegotiateAuthenticationStatusCode.
Completed
;
383
return NegotiateAuthenticationStatusCode.
Completed
;
414
return NegotiateAuthenticationStatusCode.
Completed
;
661
NegotiateAuthenticationStatusCode.
Completed
:
727
errorCode = NegotiateAuthenticationStatusCode.
Completed
;
System\Net\Security\NegotiateAuthentication.cs (6)
201
/// Successful step of the authentication returns either <see cref="NegotiateAuthenticationStatusCode.
Completed
" />
218
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
247
/// Successful step of the authentication returns either <see cref="NegotiateAuthenticationStatusCode.
Completed
" />
280
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success, other
309
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success.
337
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success.
System\Net\Security\NegotiateStream.cs (7)
409
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
417
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
531
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
538
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
755
NegotiateAuthenticationStatusCode statusCode = NegotiateAuthenticationStatusCode.
Completed
;
784
else if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
890
_remoteOk = statusCode is NegotiateAuthenticationStatusCode.
Completed
;