1. What's the difference between Enqueue and EnqueueGet? My VS 2017 says that EnqueueGet is deprecated
     
  2. Wulf

    Wulf Community Admin

    EnqueueGet is deprecated, Enqueue isn't.
     
  3. and.. JsonConvert is in Newtonsoft.Json and in Oxide.References... :(
     
  4. Wulf

    Wulf Community Admin

    What does that have to do with Enqueue?
     
  5. and what it means? :(
     
  6. Wulf

    Wulf Community Admin

    Deprecated = will be removed eventually, so you' d want to switch to the other.
     
  7. its another question, but i need help and i wont make more garbage on the forum so just writing here
    [DOUBLEPOST=1508608470][/DOUBLEPOST]
    oh.. so how can I 'convert' from webrequest.EnqueueGet(url, (code, response) => *blabla* to webrequest.Enqueue ?
    Maybe webrequest.Enqueue(url, null, (code, response) => *blabla* ?
     
  8. Wulf

    Wulf Community Admin

    Yes, that would be it.
     
  9. okj, thx. What about my question about JsonConvert?
     
  10. Wulf

    Wulf Community Admin

    What about it? You didn't really ask one.
     
  11. oh. My VS 2017 says that JsonConvert is in Newtonsoft.Json and in Oxide.References
    so when i wrote it VS said that.

    It says "The type JsonConvert exists in both Newtonsoft.Json and Oxide.References"
    So why my VS 2017 is doing that and how I can fix that? or. ... ?
     
    Last edited by a moderator: Oct 21, 2017
  12. Wulf

    Wulf Community Admin

    You'd have to specify which one to use, else don't reference Newtonsoft.Json directly.
     
  13. if I try to use Newtonsoft.Json.JsonConvert so I have the same problem in VS
     
  14. hey :)