Ejemplo n.º 1
0
 /// <summary>
 /// Gets a list of web properties based on the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the request to the API.</param>
 /// <returns>An instance of <see cref="IHttpResponse"/> representing the response.</returns>
 public IHttpResponse GetWebProperties(AnalyticsGetWebPropertiesOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(Client.GetResponse(options));
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Gets a list of web properties based on the specified <paramref name="options"/>.
 /// </summary>
 /// <param name="options">The options for the call to the API.</param>
 public AnalyticsGetWebPropertiesResponse GetWebProperties(AnalyticsGetWebPropertiesOptions options)
 {
     if (options == null)
     {
         throw new ArgumentNullException(nameof(options));
     }
     return(AnalyticsGetWebPropertiesResponse.ParseResponse(Raw.GetWebProperties(options)));
 }