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)
20
public string? GetOutgoingBlob(string incomingBlob, out
BlobErrorType
status, out Exception? error)
27
status =
BlobErrorType
.None;
35
status =
BlobErrorType
.CredentialError;
39
status =
BlobErrorType
.ClientError;
43
status =
BlobErrorType
.Other;
NegotiateHandler.cs (4)
137
var outgoing = _negotiateState.GetOutgoingBlob(token, out
var
errorType, out var exception);
138
if (errorType !=
BlobErrorType
.None)
151
if (errorType ==
BlobErrorType
.CredentialError)
158
else if (errorType ==
BlobErrorType
.ClientError)