I am using a HttpWebRequest, and am disposing of the response stream. Is there a correct method of disposing of the HttpWebRequest, as it does not contain a close or dispose method?
I am using a HttpWebRequest , and am disposing of the response stream. Is
Share
If the class had special disposal requirements, it would have implemented IDisposable. Since it doesn’t implement IDisposable, you may assume there’s nothing special you need to do.