28 references to NegotiateAuthenticationStatusCode
Microsoft.AspNetCore.Authentication.Negotiate (14)
Internal\NegotiateState.cs (14)
22
var outgoingBlob = _instance.GetOutgoingBlob(incomingBlob, out
var
authStatus);
24
if (authStatus ==
NegotiateAuthenticationStatusCode
.Completed ||
25
authStatus ==
NegotiateAuthenticationStatusCode
.ContinueNeeded)
71
private static bool IsCredentialError(
NegotiateAuthenticationStatusCode
error)
73
return error ==
NegotiateAuthenticationStatusCode
.UnknownCredentials ||
74
error ==
NegotiateAuthenticationStatusCode
.CredentialsExpired ||
75
error ==
NegotiateAuthenticationStatusCode
.BadBinding;
78
private static bool IsClientError(
NegotiateAuthenticationStatusCode
error)
80
return error ==
NegotiateAuthenticationStatusCode
.InvalidToken ||
81
error ==
NegotiateAuthenticationStatusCode
.QopNotSupported ||
82
error ==
NegotiateAuthenticationStatusCode
.UnknownCredentials ||
83
error ==
NegotiateAuthenticationStatusCode
.MessageAltered ||
84
error ==
NegotiateAuthenticationStatusCode
.OutOfSequence ||
85
error ==
NegotiateAuthenticationStatusCode
.InvalidCredentials;
System.Net.Mail (9)
System\Net\Mail\SmtpNegotiateAuthenticationModule.cs (6)
54
NegotiateAuthenticationStatusCode
statusCode;
61
if (statusCode !=
NegotiateAuthenticationStatusCode
.Completed &&
62
statusCode !=
NegotiateAuthenticationStatusCode
.ContinueNeeded)
119
NegotiateAuthenticationStatusCode
statusCode;
122
if (statusCode !=
NegotiateAuthenticationStatusCode
.Completed)
168
if (statusCode !=
NegotiateAuthenticationStatusCode
.Completed)
System\Net\Mail\SmtpNtlmAuthenticationModule.cs (3)
40
NegotiateAuthenticationStatusCode
statusCode;
43
if (statusCode !=
NegotiateAuthenticationStatusCode
.Completed &&
44
statusCode !=
NegotiateAuthenticationStatusCode
.ContinueNeeded)
System.Net.Security (5)
artifacts\obj\System.Net.Security\Debug\net10.0\System.Net.Security.notsupported.cs (5)
56
public byte[]? GetOutgoingBlob(System.ReadOnlySpan<byte> incomingBlob, out System.Net.Security.
NegotiateAuthenticationStatusCode
statusCode) { throw new System.PlatformNotSupportedException(System.SR.SystemNetSecurity_PlatformNotSupported); }
57
public string? GetOutgoingBlob(string? incomingBlob, out System.Net.Security.
NegotiateAuthenticationStatusCode
statusCode) { throw new System.PlatformNotSupportedException(System.SR.SystemNetSecurity_PlatformNotSupported); }
58
public System.Net.Security.
NegotiateAuthenticationStatusCode
Unwrap(System.ReadOnlySpan<byte> input, System.Buffers.IBufferWriter<byte> outputWriter, out bool wasEncrypted) { throw new System.PlatformNotSupportedException(System.SR.SystemNetSecurity_PlatformNotSupported); }
59
public System.Net.Security.
NegotiateAuthenticationStatusCode
UnwrapInPlace(System.Span<byte> input, out int unwrappedOffset, out int unwrappedLength, out bool wasEncrypted) { throw new System.PlatformNotSupportedException(System.SR.SystemNetSecurity_PlatformNotSupported); }
61
public System.Net.Security.
NegotiateAuthenticationStatusCode
Wrap(System.ReadOnlySpan<byte> input, System.Buffers.IBufferWriter<byte> outputWriter, bool requestEncryption, out bool isEncrypted) { throw new System.PlatformNotSupportedException(System.SR.SystemNetSecurity_PlatformNotSupported); }