33 references to 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
)
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)
312
if (statusCode == NegotiateAuthenticationStatusCode.
Completed
)
350
return NegotiateAuthenticationStatusCode.
Completed
;
378
return NegotiateAuthenticationStatusCode.
Completed
;
409
return NegotiateAuthenticationStatusCode.
Completed
;
656
NegotiateAuthenticationStatusCode.
Completed
:
722
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
" />
299
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success, other
328
/// <see cref="NegotiateAuthenticationStatusCode.
Completed
" /> on success.
356
/// <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
;