|
The docs say that when using "Track" you can enter comma separated keywords eg:
(from strm in twitterCtx.Streaming
where strm.Type == StreamingType.Filter &&
strm.Track == "cats, girls"
select strm)
.StreamingCallback(strm => [code]...)
.SingleOrDefault();
But when running this example query "cats" is the only keyword being returned. What am I doing wrong here?
|