예제 #1
0
 /// <summary>
 /// Gets a list of up to 250 custom collections.
 /// </summary>
 public virtual async Task <ListResult <CustomCollection> > ListAsync(CustomCollectionListFilter filter, CancellationToken cancellationToken = default)
 {
     return(await ListAsync(filter?.AsListFilter(), cancellationToken));
 }
 /// <summary>
 /// Gets a list of up to 250 custom collections.
 /// </summary>
 public virtual async Task<ListResult<CustomCollection>> ListAsync(CustomCollectionListFilter filter)
 {
     return await ListAsync(filter?.AsListFilter());
 }