We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It was recognized in #41892 that System.Threading.Thread ResetAbort throws PlatformNotSupportedException everywhere and should be marked as Obsolete.
System.Threading.Thread
ResetAbort
PlatformNotSupportedException
The text was updated successfully, but these errors were encountered:
I've marked this ready for review since it's very straightforward. Recommend reusing the SYSLIB0006 (Thread.Abort is obsolete) code for this.
SYSLIB0006
Sorry, something went wrong.
Video
namespace System.Threading { public sealed class Thread { // Obsoleted in .NET 5: //[Obsolete(DiagnosticId = "SYSLIB0006")] //public void Abort(); //[Obsolete(DiagnosticId = "SYSLIB0006")] //public void Abort(object stateInfo); [Obsolete(DiagnosticId = "SYSLIB0006")] public static void ResetAbort(); } }
Successfully merging a pull request may close this issue.
It was recognized in #41892 that
System.Threading.Thread
ResetAbort
throwsPlatformNotSupportedException
everywhere and should be marked as Obsolete.The text was updated successfully, but these errors were encountered: