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)
36public string? GetOutgoingBlob(string incomingBlob, out BlobErrorType status, out Exception? error) 43status = BlobErrorType.None; 51status = BlobErrorType.CredentialError; 55status = BlobErrorType.ClientError; 59status = BlobErrorType.Other;
NegotiateHandler.cs (4)
136var outgoing = _negotiateState.GetOutgoingBlob(token, out var errorType, out var exception); 137if (errorType != BlobErrorType.None) 150if (errorType == BlobErrorType.CredentialError) 157else if (errorType == BlobErrorType.ClientError)