How to resolve warning Fuse.Scripting.NativeMember.get_Context()' is obsolete in Fuse 1.8.0

Hi, I am using NativeEvent. It was not showing any warning in the previous version of Fusetools but in Fuse 1.8.0, I am getting a warning like this:

Warning W4139: 'Fuse.Scripting.NativeMember.get_Context()' is obsolete: 'Either use passed-down Context, or dispatch to ThreadWorker'

Code for NativeEvent

    NativeEvent _nativeEvent;
    public Chat()
   {
      ....
      ....
       _nativeEvent = new NativeEvent("onMessageReceived");
       AddMember(_nativeEvent);
      ....
   }

   static void SendMessage(string message)
   {
       _nativeEvent.RaiseAsync(_nativeEvent.Context.ThreadWorker, message );
   }

I have the same problem. Can someone from the Fuse’s team propose a solution, please?

I fixed the problem replace _nativeEvent.Context.ThreadWorker with _nativeEvent.ThreadWorker and now it is worked.
Try you also.