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)
775
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
853
return NegotiateAuthenticationStatusCode.
Completed
;
880
return NegotiateAuthenticationStatusCode.
Completed
;
906
return NegotiateAuthenticationStatusCode.
Completed
;
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (6)
180
statusCode != NegotiateAuthenticationStatusCode.
Completed
)
339
statusCode != NegotiateAuthenticationStatusCode.
Completed
)
357
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
369
statusCode = state == NegState.RequestMic ? NegotiateAuthenticationStatusCode.ContinueNeeded : NegotiateAuthenticationStatusCode.
Completed
;
370
_isAuthenticated = statusCode == NegotiateAuthenticationStatusCode.
Completed
;
407
NegState.AcceptCompleted => NegotiateAuthenticationStatusCode.
Completed
,
System\Net\NegotiateAuthenticationPal.Unix.cs (6)
311
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
349
return NegotiateAuthenticationStatusCode.
Completed
;
377
return NegotiateAuthenticationStatusCode.
Completed
;
408
return NegotiateAuthenticationStatusCode.
Completed
;
648
NegotiateAuthenticationStatusCode.
Completed
:
715
errorCode = NegotiateAuthenticationStatusCode.
Completed
;
System\Net\Security\NegotiateAuthentication.cs (6)
207
/// Successful step of the authentication returns either <see cref="NegotiateAuthenticationStatusCode.
Completed
" />
224
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
253
/// Successful step of the authentication returns either <see cref="NegotiateAuthenticationStatusCode.
Completed
" />
305
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success, other
334
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success.
362
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success.
System\Net\Security\NegotiateStream.cs (7)
414
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
422
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
539
statusCode = NegotiateAuthenticationStatusCode.
Completed
;
546
if (statusCode != NegotiateAuthenticationStatusCode.
Completed
)
763
NegotiateAuthenticationStatusCode statusCode = NegotiateAuthenticationStatusCode.
Completed
;
792
else if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
898
_remoteOk = statusCode is NegotiateAuthenticationStatusCode.
Completed
;