示例#1
0
 /// <inheritdoc />
 public void Dispose()
 {
     if (_service == null)
     {
         return;
     }
     _service.Dispose();
     _service = null;
 }
示例#2
0
 /// <summary>
 /// ctor
 /// </summary>
 /// <param name="serviceUrl"></param>
 public GoogleAnalyticsWrapperClient(string serviceUrl)
 {
     _service = new GoogleAnalyticsWrapperAPI(new Uri(serviceUrl));
 }