@JKeegan
The JsonObjectReceived is not really a Json Object. Instead it should be called MessageReceived.
So any string received within the stream is analyzed by Tweetinvi.
In any case I am waiting for the delay or when a response is received from the Stream.
Cheers,
Linvi
The JsonObjectReceived is not really a Json Object. Instead it should be called MessageReceived.
So any string received within the stream is analyzed by Tweetinvi.
In any case I am waiting for the delay or when a response is received from the Stream.
// Code of Tweetinvi awaiting for messagevar requestTask = _currentReader.ReadLineAsync(); var resultingTask = TaskEx.WhenAny(requestTask, TaskEx.Delay(STREAM_DISCONNECTED_DELAY)).Result;
Linvi