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
Copy file name to clipboardExpand all lines: docs/project/list-of-diagnostics.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -110,6 +110,7 @@ The PR that reveals the implementation of the `<IncludeInternalObsoleteAttribute
110
110
|__`SYSLIB0053`__| AesGcm should indicate the required tag size for encryption and decryption. Use a constructor that accepts the tag size. |
111
111
|__`SYSLIB0054`__| Thread.VolatileRead and Thread.VolatileWrite are obsolete. Use Volatile.Read or Volatile.Write respectively instead. |
112
112
|__`SYSLIB0055`__| The underlying hardware instruction does not perform a signed saturate narrowing operation, and it always returns an unsigned result. Use the unsigned overload instead. |
113
+
|__`SYSLIB0056`__| LoadFrom with a custom AssemblyHashAlgorithm is obsolete. Use overloads without an AssemblyHashAlgorithm. |
113
114
|__`SYSLIB0057`__| Loading certificate data through the constructor or Import is obsolete. Use X509CertificateLoader instead to load certificates. |
Copy file name to clipboardExpand all lines: src/libraries/Common/src/System/Obsoletions.cs
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -183,5 +183,8 @@ internal static class Obsoletions
183
183
184
184
internalconststringX509CtorCertDataObsoleteMessage="Loading certificate data through the constructor or Import is obsolete. Use X509CertificateLoader instead to load certificates.";
0 commit comments