Skip to content

Commit

Permalink
fix used in methods documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
winklertomas committed Feb 28, 2025
1 parent 7635ea7 commit 502d4e2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Kontent.Ai.Delivery.Abstractions/DeliveryClientExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static Task<IDeliverySyncInitResponse> PostSyncInitAsync(this IDeliveryCl
/// </summary>
/// <param name="client">An instance of the <see cref="IDeliveryClient"/></param>
/// <param name="codename">The codename of a content item.</param>
/// <param name="parameters">An array that contains zero or more query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">An array that contains zero or more query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated.</returns>
public static IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(this IDeliveryClient client, string codename, params IQueryParameter[] parameters)
{
Expand All @@ -106,7 +106,7 @@ public static IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(this IDeliveryClient
/// </summary>
/// <param name="client">An instance of the <see cref="IDeliveryClient"/></param>
/// <param name="codename">The codename of an asset.</param>
/// <param name="parameters">An array that contains zero or more query parameters, for example, for filtering, or ordering.</param>
/// <param name="parameters">An array that contains zero or more query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated.</returns>
public static IDeliveryItemsFeed<IUsedInItem> GetAssetUsedIn(this IDeliveryClient client, string codename, params IQueryParameter[] parameters)
{
Expand Down
4 changes: 2 additions & 2 deletions Kontent.Ai.Delivery.Abstractions/IDeliveryClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ public interface IDeliveryClient
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of a content item.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null);

/// <summary>
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of an asset.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetAssetUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null);
}
Expand Down
4 changes: 2 additions & 2 deletions Kontent.Ai.Delivery.Caching/DeliveryClientCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public Task<IDeliverySyncResponse> GetSyncAsync(string continuationToken)
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of a content item.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null)
{
Expand All @@ -191,7 +191,7 @@ public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerabl
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of an asset.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="IDeliveryItemsFeed{IUsedInItem}"/> instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetAssetUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null)
{
Expand Down
4 changes: 2 additions & 2 deletions Kontent.Ai.Delivery/DeliveryClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ public async Task<IDeliverySyncResponse> GetSyncAsync(string continuationToken)
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of a content item.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="DeliveryUsedInItems"/> instance that can be used to enumerate through content item parents for the specified item codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null)
{
Expand All @@ -382,7 +382,7 @@ public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerabl
/// Returns a feed that is used to traverse through strongly typed parent content items matching the optional filtering parameters.
/// </summary>
/// <param name="codename">The codename of an asset.</param>
/// <param name="parameters">A collection of query parameters, for example, for filtering or ordering.</param>
/// <param name="parameters">A collection of query parameters for filtering.</param>
/// <returns>The <see cref="DeliveryUsedInItems"/> instance that can be used to enumerate through asset parents for the specified asset codename. If no query parameters are specified, default language parents are enumerated.</returns>
public IDeliveryItemsFeed<IUsedInItem> GetAssetUsedIn(string codename, IEnumerable<IQueryParameter> parameters = null)
{
Expand Down

0 comments on commit 502d4e2

Please sign in to comment.