10 references to BlobErrorType
Microsoft.AspNetCore.Authentication.Negotiate (10)
Internal\INegotiateState.cs (1)
11
string? GetOutgoingBlob(string incomingBlob, out
BlobErrorType
status, out Exception? error);
Internal\NegotiateState.cs (5)
36
public string? GetOutgoingBlob(string incomingBlob, out
BlobErrorType
status, out Exception? error)
43
status =
BlobErrorType
.None;
51
status =
BlobErrorType
.CredentialError;
55
status =
BlobErrorType
.ClientError;
59
status =
BlobErrorType
.Other;
NegotiateHandler.cs (4)
136
var outgoing = _negotiateState.GetOutgoingBlob(token, out
var
errorType, out var exception);
137
if (errorType !=
BlobErrorType
.None)
150
if (errorType ==
BlobErrorType
.CredentialError)
157
else if (errorType ==
BlobErrorType
.ClientError)