How do you get a twitch chatbot to read whispers in c#?

I’m messing around with TwitchLib now but I wasn’t using any library at all other than System/.net.sockets/.IO

Parsing code is just manual if contains

if (message.Contains(“WHISPER”))
{
//Do Whisper Stuff
}
if (message.Contains("PRIVMSG"))
{
//Do Regular Chat stuff
}

The PRIVMSG works fine but it doesn’t recognize whispers. TwitchLib has what I need I think but I’d still like to find an answer for this for my own knowledge.