File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Contentstack.Management.Core/Models Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -318,11 +318,10 @@ public virtual Task<ContentstackResponse> UnpublishAsync(PublishUnpublishDetails
318
318
/// <summary>
319
319
/// The References request returns the details of the entries and the content types in which the specified asset is referenced.
320
320
/// </summary>
321
- /// <param name="details">Publish details.</param>
322
321
/// <example>
323
322
/// <pre><code>
324
323
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
325
- /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").Unpublish(new PublishUnpublishDetails() );
324
+ /// ContentstackResponse contentstackResponse = client.Stack("<API_KEY>").Asset("<ASSET_UID>").References( );
326
325
/// </code></pre>
327
326
/// </example>
328
327
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
@@ -338,15 +337,14 @@ public virtual ContentstackResponse References(ParameterCollection collection =
338
337
/// <summary>
339
338
/// The ReferencesAsync request returns the details of the entries and the content types in which the specified asset is referenced.
340
339
/// </summary>
341
- /// <param name="details">Publish details.</param>
342
340
/// <example>
343
341
/// <pre><code>
344
342
/// ContentstackClient client = new ContentstackClient("<AUTHTOKEN>", "<API_HOST>");
345
- /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").UnpublishAsync(new PublishUnpublishDetails() );
343
+ /// ContentstackResponse contentstackResponse = await client.Stack("<API_KEY>").Asset("<ASSET_UID>").ReferencesAsync( );
346
344
/// </code></pre>
347
345
/// </example>
348
346
/// <returns>The <see cref="ContentstackResponse"/>.</returns>
349
- public virtual Task < ContentstackResponse > ReferencesAsync ( )
347
+ public virtual Task < ContentstackResponse > ReferencesAsync ( ParameterCollection collection = null )
350
348
{
351
349
stack . ThrowIfNotLoggedIn ( ) ;
352
350
ThrowIfUidEmpty ( ) ;
You can’t perform that action at this time.
0 commit comments