10 references to BlobErrorType
Microsoft.AspNetCore.Authentication.Negotiate (10)
Internal\INegotiateState.cs (1)
11string? GetOutgoingBlob(string incomingBlob, out BlobErrorType status, out Exception? error);
Internal\NegotiateState.cs (5)
20public string? GetOutgoingBlob(string incomingBlob, out BlobErrorType status, out Exception? error) 27status = BlobErrorType.None; 35status = BlobErrorType.CredentialError; 39status = BlobErrorType.ClientError; 43status = BlobErrorType.Other;
NegotiateHandler.cs (4)
137var outgoing = _negotiateState.GetOutgoingBlob(token, out var errorType, out var exception); 138if (errorType != BlobErrorType.None) 151if (errorType == BlobErrorType.CredentialError) 158else if (errorType == BlobErrorType.ClientError)