public NaturalLanguageIntelligence(GoogleCloudClassSetup setup) { httpClient = new HttpClient(); // Since this is the first time we use the httpClient, we need to intialize its base address httpClient.BaseAddress = new Uri(setup.getAPIUrl("NATURAL_LANGUAGE_INTELLIGENCE_API_URL").ToString()); APIKey = setup.getAPIKey(); }
public PlacesDetail(GoogleCloudClassSetup setup) { httpClient = new HttpClient(); // Since this is the first time we use the httpClient, we need to intialize its base address httpClient.BaseAddress = new Uri(setup.getAPIUrl("PLACES_API_URL").ToString()); APIKey = setup.getAPIKey(); }
public void UpdateKey(GoogleCloudClassSetup setup) { APIKey = setup.getAPIKey(); }
public void UpdateURL(GoogleCloudClassSetup setup) { httpClient.BaseAddress = new Uri(setup.getAPIUrl("NATURAL_LANGUAGE_INTELLIGENCE_API_URL").ToString()); }
public void UpdateURL(GoogleCloudClassSetup setup) { httpClient.BaseAddress = new Uri(setup.getAPIUrl("PLACES_API_URL").ToString()); }