5 writes to _negotiateState
Microsoft.AspNetCore.Authentication.Negotiate (5)
NegotiateHandler.cs (5)
95_negotiateState = persistence?.State; 128_negotiateState = null; 132_negotiateState ??= Options.StateFactory.CreateInstance(); 141_negotiateState = null; 245_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(); 134var outgoing = _negotiateState.GetOutgoingBlob(token, out var errorType, out var exception); 140_negotiateState.Dispose(); 171if (!_negotiateState.IsCompleted) 176persistence.State = _negotiateState; 202if (_negotiateState.Protocol == "NTLM" && !Options.PersistNtlmCredentials) 206Debug.Assert(object.ReferenceEquals(persistence?.State, _negotiateState), 208Logger.DisablingCredentialPersistence(_negotiateState.Protocol); 210Response.RegisterForDispose(_negotiateState); 212else if (_negotiateState.Protocol == "Kerberos") 219persistence.State = _negotiateState; 225Logger.DisablingCredentialPersistence(_negotiateState.Protocol); 228Response.RegisterForDispose(_negotiateState); 244_negotiateState?.Dispose(); 308if (_negotiateState == null) 313if (!_negotiateState.IsCompleted) 321var identity = _negotiateState.GetIdentity();