6 references to _requestStates
Microsoft.Extensions.AI (6)
ChatRouting\OrderedFailoverChatClient.cs (6)
77
int clientIndex =
_requestStates
.TryGetValue(context, out int nextClientIndex) ? nextClientIndex : 0;
93
_ =
_requestStates
.TryRemove(context, out _);
100
int nextClientIndex = (
_requestStates
.TryGetValue(context, out int attemptedIndex) ? attemptedIndex : 0) + 1;
103
_requestStates
[context] = nextClientIndex;
108
_ =
_requestStates
.TryRemove(context, out _);
122
_requestStates
.Clear();