Please share more of your code and try the following:
Let me know if this work when you publish a tweet or a friend of you publishes a tweet.
Linvi
var us = Stream.CreateUserStream();
us.TweetCreatedByAnyone += (sender, args) =>
{
Console.WriteLine(args.Tweet);
};
us.StartStream();
Linvi