Are you joining a channel with over 1000 people in it? You’ll only get JOIN/PARTs for moderators in that case.
As a side-note I’d recommend combining the CAP REQs and sending them first:
outputStream.WriteLine("CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership");
outputStream.Flush();
outputStream.WriteLine($"PASS {password}");
outputStream.WriteLine($"NICK {username}");
outputStream.Flush();
outputStream.WriteLine("JOIN #channelName");
outputStream.Flush();
You also don’t need to send USER for TMI.