Пример #1
0
 /// <summary>
 /// Create a new instance (with default configuration)
 /// </summary>
 /// <param name="clientId">Client Id</param>
 /// <param name="clientSecret">Client secret</param>
 public MapsAPIClient(string clientId, string clientSecret)
     : this(clientId, clientSecret, MapsAPIClientConfig.Default())
 {
 }
Пример #2
0
 /// <summary>
 /// Create a new instance (with default configuration)
 /// </summary>
 /// <param name="apiKey">API key</param>
 public MapsAPIClient(string apiKey)
     : this(apiKey, MapsAPIClientConfig.Default())
 {
 }