Hi chaudhariapurva
would you mind to share the piece of code to change the mode of stream ?
i am using the below but not able to get "full" mode but able to get "quote" which is 44 bytes.
this block is for subscription
{
TextBox1.text = "{"a": "subscribe", "v": [408065, 884737]}" -- this string is manually entered to textbox
dynamic encoded = Encoding.UTF8.GetBytes(TextBox1.text);
dynamic buffer = new ArraySegment(encoded);
webSocket.SendAsync(buffer, WebSocketMessageType.Text, true, cancellation);
}
This block is for mode change
{
TextBox1.text = "{"a": "mode", "v": ["full", [408065]}" -- this string is manually entered to textbox
dynamic encoded = Encoding.UTF8.GetBytes(TextBox1.text);
dynamic buffer = new ArraySegment(encoded);
webSocket.SendAsync(buffer, WebSocketMessageType.Text, true, cancellation);
}
June 2016