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
The BaseClient should implement the IDisposable interface as it contains a disposable HttpClient.
Internally, none of the references to HttpRequestMessage or HttpResponseMessage are properly disposed of, either in a using statement or explicitly.
This causes the underlying streams and sockets to hang around leading to memory leaks and socket exhaustion.
The BaseClient should implement the IDisposable interface as it contains a disposable HttpClient.
Internally, none of the references to HttpRequestMessage or HttpResponseMessage are properly disposed of, either in a using statement or explicitly.
This causes the underlying streams and sockets to hang around leading to memory leaks and socket exhaustion.
https://learn.microsoft.com/en-us/dotnet/fundamentals/runtime-libraries/system-idisposable
I'm not sure why this has been ignored, and for so long, but it has.
The text was updated successfully, but these errors were encountered: