22 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)
134var outgoing = _negotiateState.GetOutgoingBlob(token, out var errorType, out var exception); 135if (errorType != BlobErrorType.None) 148if (errorType == BlobErrorType.CredentialError) 155else if (errorType == BlobErrorType.ClientError)
Microsoft.AspNetCore.Authentication.Negotiate.Test (12)
EventTests.cs (6)
529public string GetOutgoingBlob(string incomingBlob, out BlobErrorType errorType, out Exception ex) 540errorType = BlobErrorType.None; 573errorType = BlobErrorType.CredentialError; 577errorType = BlobErrorType.ClientError; 581errorType = BlobErrorType.Other; 585errorType = BlobErrorType.Other;
NegotiateHandlerTests.cs (6)
553public string GetOutgoingBlob(string incomingBlob, out BlobErrorType errorType, out Exception ex) 564errorType = BlobErrorType.None; 597errorType = BlobErrorType.CredentialError; 601errorType = BlobErrorType.ClientError; 605errorType = BlobErrorType.Other; 609errorType = BlobErrorType.Other;