1

When compiling the current Alchemi API for C# I get the following messages:

AlchemyAPI.cs(670,16): warning CS0618: 'System.Net.GlobalProxySelection' is obsolete: 'This class has been deprecated.
        Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use 'null' instead of
        GetEmptyWebProxy. http://go.microsoft.com/fwlink/?linkid=14202'
AlchemyAPI.cs(681,16): warning CS0618: 'System.Net.GlobalProxySelection' is obsolete: 'This class has been deprecated.
        Please use WebRequest.DefaultWebProxy instead to access and set the global default proxy. Use 'null' instead of
        GetEmptyWebProxy. http://go.microsoft.com/fwlink/?linkid=14202'

which lead me to believe that maybe the api may be outdated. Is there an up-to-date api somewhere?

blueberryfields
  • 45,910
  • 28
  • 89
  • 168
  • 1
    The examples (with the exception of one, and that might be an unrelated issue) seem to run just fine. I'm wondering this myself, though. – jonsca Oct 12 '11 at 13:36

1 Answers1

1

A community member recently forked the AlchemyAPI C# SDK, and you can access it on GitHub.. That is the most up-to-date version currently available.

Steve
  • 141
  • 1
  • 3