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