Hi,
The reason why this is not working might be because no tweet published matches both the location and the search.
What you can do to verify this is use StartStreamMatchingAnyCondition instead of StartStreamMatchingAllConditions;
You can then check whether the information any tweet is being received from Twitter using the JSonObjectReceived, that will give you the RAW Json of each object received from Twitter.
Please let me know if any of this helped you.
Linvi
The reason why this is not working might be because no tweet published matches both the location and the search.
What you can do to verify this is use StartStreamMatchingAnyCondition instead of StartStreamMatchingAllConditions;
stream.StartStreamMatchingAnyCondition();
stream.JsonObjectReceived += (sender, args) => { Console.WriteLine(args.Json); };
Linvi