Methods and ideas that are no longer used in the current versions of various technologies.
Questions tagged [obsolete]
190 questions
0
votes
0 answers
How to replace osolete CursorLoader in Xamarin?
I'm developing an application in Xamarin for Android which needs to get a list of calendars. I've found an example how to do it but there is used CursorLoader which is mark as deprecated. I wasn't able to find a replacement of the function in…

Libor Foltynek
- 3
- 1
0
votes
1 answer
Beginner - Why is execCommand() obsolete?
Not a coding question, and the question applies to a wider tag of XYZ becoming obsolete, but asking as there seems to be tons of comments on the web about how there are so many apps out there that use this command.
Why is this now obsolete? (tried…

kenta_desu
- 303
- 1
- 9
0
votes
1 answer
How to mark a method that has become obsolete in the next version?
Is there an attribute like Obsolete or Deprecated to indicate that a method has become obsolete or deprecated in the next version of a C# API? Otherwise, is there a standard for indicating that, like adding it in the remarks of a method's…

Hugo
- 349
- 3
- 6
- 23
0
votes
1 answer
Why does one project give "obsolete" warnings, while the other does not?
I have two very similar vb.net projects. Both have recently been converted from .net 1.1 to 3.5.
In one, the following code gives no warnings. In the other I get a warning when I try to set the parameters of the mysql command object:
Public Sub…

Urbycoz
- 7,247
- 20
- 70
- 108
0
votes
2 answers
Obsolete Handling on field name in c #
I have been struggling with obsolete handling, I know what is the usage of obsolete in c#. But my question is not the usage of obsolete is managing.
I have a class such as salestransactionstep that contains name, description, and quantity, like the…

Mustafa BYKSY
- 95
- 8
0
votes
1 answer
FMU import and export of Simulink and openModelica
Is there a way for FMU import/export to/from Simulink and Modelica models?
If anyone could help in FMU would be much appreciated.

Akhil Nandan
- 315
- 2
- 9
0
votes
1 answer
Is it possible to use make to remove obsolete targets
I use make to create thumbnails from image files that will in turn be used to create web pages.
Sometimes I delete a source image and I would like the thumbnail to be removed automatically. The obvious way to do it would be to simply add a rule…

Kevin Whitefoot
- 414
- 3
- 15
0
votes
2 answers
What is the correct replacement for (PF_INET,SOCK_PACKET)
I am given a task to eliminate the
uses obsolete (PF_INET,SOCK_PACKET)
warning from a userspace client.
If this type of use is obsolete; what is the correct, similar replacement for this task?
Edit: There was misleading information here.

Atilla Filiz
- 2,383
- 8
- 29
- 47
0
votes
1 answer
Browser for old self-hosted web applications?
Today, even 64bit machines running Microsoft Windows 10 can run applications written in old platforms such as VB6. This has allowed many old desktop applications to continue working even after their manufacturers have disappeared or stopped…

Claudi
- 5,224
- 17
- 30
0
votes
1 answer
*.xaml.g.cs file is showing an obsolete warning (CS0618). How to use Obsolete attribute in a partial class?
I have a custom view marked as obsolete with
[Obsolete("AccordionButton is deprecated, please use HeaderButton instead.")]
by adding this attribute to the *.xaml.cs file. Now I'm getting a warning in the xaml.g.cs file on compilation, because it is…

testing
- 19,681
- 50
- 236
- 417
0
votes
0 answers
Replace of escape() and unescape() and the consequences for already stored strings
I want to replace all the (deprecated) escape() and unescape() calls in our Javascript code with encodeURIComponent, decodeURICompnent or/and encodeURI, decodeURI.
The problem is, that our customers might have strings in their databases, which are…

finnk
- 123
- 1
- 1
- 12
0
votes
1 answer
Looking for documention. What is the doc's name? what is nomenclature for the layout?
I am looking for documentation to explain the changes in syntax/layout in C++ between C++11 and C++17. Where do I find syntax that is deprecated/obsolete and what takes its place?
For example: this type stuff
C11 c17
char*…

bteddy1
- 1
0
votes
0 answers
Why jdk Thread.stop()/suspend()/resume() functions are not safe and obsoleted?
I googled and found this, other ways to cancel a thread include things like using a boolean flag inside a thread loop, and modify it somewhere else to make thread quit.
Isn't this same ugly, and why Thread.stop()/suspend()/resume() are more…

Hind Forsum
- 9,717
- 13
- 63
- 119
0
votes
1 answer
Is there a way to continue using deprecated .net system libraries?
A constraint for my c# project is to send emails by using the obsolete System.Web.Mail. A tooltip in VS warns me that I should use System.Net.Mail, but I cannot. I expect that, in the (near?) future, System.Web.Mail will be deprecated.
My question…

AdrianS
- 63
- 5
0
votes
1 answer
Connection is encrypted using an obsolete cipher suite
I am getting this warning on mobile devices, the full warning is:
The connection uses TLS 1.2
The connection is encrypted using AES_256_CBC, with HMAC-SHA1 for message authentication and ECDHE_RSA as the key exchange.
I am using a dedicated VPS for…

user2006049
- 9
- 1
- 4