Exemple #1
0
        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();
        }
Exemple #3
0
 public void UpdateKey(GoogleCloudClassSetup setup)
 {
     APIKey = setup.getAPIKey();
 }
Exemple #4
0
 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());
 }