You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
R9 is using HttpRequestMessage.Properties/Options in several cases and we have plans in #86281 to utilize it further. The property bag contains very few elements typically, so the internal dictionary can be substituted by linear lookup over a list of elements.
My recommendation would be to embed a few key-value pairs and allocate an Array over a threshold, like we do in TagList.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/ncl
See info in area-owners.md if you want to be subscribed.
Issue Details
R9 is using HttpRequestMessage.Properties/Options in several cases and we have plans in #86281 to utilize it further. The property bag contains very few elements typically, so the internal dictionary can be substituted by linear lookup over a list of elements.
My recommendation would be to embed a few key-value pairs and allocate an Array over a threshold, like we do in TagList.
R9 is using
HttpRequestMessage.Properties
/Options
in several cases and we have plans in #86281 to utilize it further. The property bag contains very few elements typically, so the internal dictionary can be substituted by linear lookup over a list of elements.My recommendation would be to embed a few key-value pairs and allocate an Array over a threshold, like we do in
TagList
.The text was updated successfully, but these errors were encountered: