Hi,
Thank you for the reply.
Could you please try and check if any of the 2 following events are being raised when you send a message.
If any of these are being raised when you send a message, please give me value of the Json.
Thanks,
Linvi
Thank you for the reply.
Could you please try and check if any of the 2 following events are being raised when you send a message.
var us = Stream.CreateUserStream(); us.UnmanagedEventReceived += (sender, args) => { Console.WriteLine("unexpected message received"); Console.WriteLine(args.JsonMessageReceived); }; us.JsonObjectReceived += (sender, args) => { Console.WriteLine("Json Received!"); Console.WriteLine(args.Json); };
Thanks,
Linvi