5 writes to _negotiateState
Microsoft.AspNetCore.Authentication.Negotiate (5)
NegotiateHandler.cs (5)
95_negotiateState = persistence?.State; 128_negotiateState = null; 135_negotiateState ??= Options.StateFactory.CreateInstance(); 144_negotiateState = null; 248_negotiateState = null;
20 references to _negotiateState
Microsoft.AspNetCore.Authentication.Negotiate (20)
NegotiateHandler.cs (20)
101if (_negotiateState?.IsCompleted == false) 116if (_negotiateState?.IsCompleted == false) 124if (_negotiateState?.IsCompleted == true) 127_negotiateState.Dispose(); 137var outgoing = _negotiateState.GetOutgoingBlob(token, out var errorType, out var exception); 143_negotiateState.Dispose(); 174if (!_negotiateState.IsCompleted) 179persistence.State = _negotiateState; 205if (_negotiateState.Protocol == "NTLM" && !Options.PersistNtlmCredentials) 209Debug.Assert(object.ReferenceEquals(persistence?.State, _negotiateState), 211Logger.DisablingCredentialPersistence(_negotiateState.Protocol); 213Response.RegisterForDispose(_negotiateState); 215else if (_negotiateState.Protocol == "Kerberos") 222persistence.State = _negotiateState; 228Logger.DisablingCredentialPersistence(_negotiateState.Protocol); 231Response.RegisterForDispose(_negotiateState); 247_negotiateState?.Dispose(); 311if (_negotiateState == null) 316if (!_negotiateState.IsCompleted) 324var identity = _negotiateState.GetIdentity();