PluginHost.CreateOneTimeTimer() obsolete in v5?

What is the correct way to proceed with this in v5, do I need to pass in the ICallInfo which triggered the timer logic? And what is the rationale behind this change in API? Thanks in advance.

Best Answer

Answers

  • hi, @OldPilgrim

    in v5 you need to use new method. ICallInfo can be null, because it is not always possible to provide it. callInfo should be provided if you want to call Continue/Fail/Cancel method from timer callback

    best,
    ilya
  • @JohnTube nice, thanks! I hadn't noticed that the documentation had been updated.