24 lines
439 B
C#
24 lines
439 B
C#
|
|
|
|
class OmdbService
|
|
{
|
|
private readonly string url;
|
|
|
|
public OmdbService()
|
|
{
|
|
var apiKey = File.ReadAllText("APIKey.txt").Trim();
|
|
apiKey = System.Net.WebUtility.UrlEncode(apiKey);
|
|
|
|
url = "http://www.omdbapi.com/?apikey=" + apiKey + "&";
|
|
}
|
|
|
|
public async void FetchMovieDetail(string id)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
public async void FetchMovies(string searchTitle)
|
|
{
|
|
// TODO
|
|
}
|
|
} |