示例#1
0
 /// <summary>
 /// Returns a feed that is used to traverse through strongly typed content items matching the optional filtering parameters.
 /// </summary>
 /// <typeparam name="T">Type of the model. (Or <see cref="object" /> if the return type is not yet known.)</typeparam>
 /// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
 /// <returns>The <see cref="IDeliveryItemsFeed{T}" /> instance that can be used to enumerate through content items. If no query parameters are specified, all content items are enumerated.</returns>
 public IDeliveryItemsFeed <T> GetItemsFeed <T>(IEnumerable <IQueryParameter> parameters)
 {
     return(DeliveryClient.GetItemsFeed <T>(parameters));
 }
示例#2
0
 /// <summary>
 /// Returns a feed that is used to traverse through strongly typed content items matching the optional filtering parameters.
 /// </summary>
 /// <typeparam name="T">Type of the model. (Or <see cref="object" /> if the return type is not yet known.)</typeparam>
 /// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
 /// <returns>The <see cref="IDeliveryItemsFeed{T}" /> instance that can be used to enumerate through content items. If no query parameters are specified, all content items are enumerated.</returns>
 public IDeliveryItemsFeed <T> GetItemsFeed <T>(params IQueryParameter[] parameters)
 {
     return(DeliveryClient.GetItemsFeed <T>(parameters));
 }