Netsy.Helpers.EtsyUriBuilder.OffsetLimit C# (CSharp) Method

OffsetLimit() public method

Append an limit to the uri
public OffsetLimit ( int offset, int limit ) : EtsyUriBuilder
offset int the result set offset
limit int the results limit
return EtsyUriBuilder
        public EtsyUriBuilder OffsetLimit(int offset, int limit)
        {
            this.Offset(offset);
            return this.Limit(limit);
        }