danesparza / tvshow-info

A .NET class library for getting information about a TV show episode
MIT License
2 stars 3 forks source link

Error triggering showMgr.GetEpisodeInfo(strShow, intSeason, intEpisode) #3

Open JontheCoder opened 6 years ago

JontheCoder commented 6 years ago

When I call the above using the following code, I get the (following) error message Method not found: 'System.String ServiceStack.Text.WebRequestExtensions.GetJsonFromUrl(System.String, System.Action1<System.Net.HttpWebRequest>, System.Action1)'.'

Triggered using ShowInformationManager showMgr = new ShowInformationManager(); TVEpisodeInfo episode = showMgr.GetEpisodeInfo(strShow, intSeason, intEpisode);

where strShow="Power" (as an example), intSeason=5, intEpisode=6

I get the same error following your example (Once upon a time)

Please advise what I'm missing? using System; using System.IO; using System.Configuration; using System.Net; using ShowInfo; using ShowInfoProvider;