Class ListSharedLinksResult
The list shared links result object
Inheritance
Inherited Members
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListSharedLinksResult
Constructors
| Improve this Doc View SourceListSharedLinksResult(IEnumerable<SharedLinkMetadata>, Boolean, String)
Initializes a new instance of the ListSharedLinksResult class.
Declaration
public ListSharedLinksResult(IEnumerable<SharedLinkMetadata> links, bool hasMore, string cursor = null)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<SharedLinkMetadata> | links | Shared links applicable to the path argument. |
System.Boolean | hasMore | Is true if there are additional shared links that have not been returned yet. Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to retrieve them. |
System.String | cursor | Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to obtain the additional links. Cursor is returned only if no path is given. |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to obtain the additional links. Cursor is returned only if no path is given.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
HasMore
Is true if there are additional shared links that have not been returned yet. Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to retrieve them.
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Links
Shared links applicable to the path argument.
Declaration
public IList<SharedLinkMetadata> Links { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<SharedLinkMetadata> |