You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Kontent.Ai.Delivery.Rx/DeliveryObservableProxy.cs
+5-17Lines changed: 5 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
usingSystem.Collections.Generic;
3
3
usingSystem.Reactive.Disposables;
4
4
usingSystem.Reactive.Linq;
5
+
usingSystem.Reactive;
6
+
usingSystem.Threading.Tasks;
5
7
usingKontent.Ai.Delivery.Abstractions;
6
8
7
9
namespaceKontent.Ai.Delivery.Rx
@@ -104,8 +106,7 @@ public IObservable<T> GetItemsFeedObservable<T>(params IQueryParameter[] paramet
104
106
/// <returns>The <see cref="IObservable{T}"/> that represents the content items. If no query parameters are specified, all content items are returned.</returns>
@@ -127,8 +128,7 @@ public IObservable<IUsedInItem> GetItemUsedInObservable(string codename, params
127
128
/// <returns>The <see cref="IObservable{IUsedInItem}"/> that represents the parent content items for the specified content item. If no query parameters are specified, parents in default language are returned.</returns>
@@ -150,8 +150,7 @@ public IObservable<IUsedInItem> GetAssetUsedInObservable(string codename, params
150
150
/// <returns>The <see cref="IObservable{IUsedInItem}"/> that represents the parent content items for the specified content item. If no query parameters are specified, parents in default language are returned.</returns>
Copy file name to clipboardExpand all lines: Kontent.Ai.Delivery/DeliveryClient.cs
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -372,6 +372,11 @@ public async Task<IDeliverySyncResponse> GetSyncAsync(string continuationToken)
372
372
/// <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>
@@ -386,6 +391,11 @@ public IDeliveryItemsFeed<IUsedInItem> GetItemUsedIn(string codename, IEnumerabl
386
391
/// <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>
0 commit comments