/// <summary>
    ///   <para>Maximum number of pages to display initially. Default is 5.</para>
    /// </summary>
    /// <param name="widget">Widget to call method on.</param>
    /// <param name="limit">Maximum number of pages.</param>
    /// <returns>Reference to provided <paramref name="widget"/>.</returns>
    /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
    public static IVkontakteRecommendationsWidget Limit(this IVkontakteRecommendationsWidget widget, VkontakteRecommendationsLimit limit)
    {
      Assertion.NotNull(widget);

      return widget.Limit((byte)limit);
    }
Esempio n. 2
0
        /// <summary>
        ///   <para>Maximum number of pages to display initially. Default is 5.</para>
        /// </summary>
        /// <param name="widget">Widget to call method on.</param>
        /// <param name="limit">Maximum number of pages.</param>
        /// <returns>Reference to provided <paramref name="widget"/>.</returns>
        /// <exception cref="ArgumentNullException">If <paramref name="widget"/> is a <c>null</c> reference.</exception>
        public static IVkontakteRecommendationsWidget Limit(this IVkontakteRecommendationsWidget widget, VkontakteRecommendationsLimit limit)
        {
            Assertion.NotNull(widget);

            return(widget.Limit((byte)limit));
        }