I have created a few WebRequest extension methods that support cancelling. Is it possible to mark related .net framework methods as Obsolete. That will allow other developers to get warning and encourage them to use a new extension methods.
I have created a few WebRequest extension methods that support cancelling. Is it possible
Share
If you’re asking if you can mark methods from the Base Class Libraries with the
Obsolete(or any) attribute, the answer is no. You must control the source for methods you want to mark up with attributes.