Dropbox .NET SDK
Show / Hide Table of Contents

Class ListSharedLinksResult

The list shared links result object

Inheritance
object
ListSharedLinksResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class ListSharedLinksResult

Constructors

View Source

ListSharedLinksResult(IEnumerable<SharedLinkMetadata>, bool, string)

Initializes a new instance of the ListSharedLinksResult class.

Declaration
public ListSharedLinksResult(IEnumerable<SharedLinkMetadata> links, bool hasMore, string cursor = null)
Parameters
Type Name Description
IEnumerable<SharedLinkMetadata> links

Shared links applicable to the path argument.

bool hasMore

Is true if there are additional shared links that have not been returned yet. Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to retrieve them.

string cursor

Pass the cursor into ListSharedLinksAsync(ListSharedLinksArg) to obtain the additional links. Cursor is returned only if no path is given.

Properties

View Source

Cursor

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
string
View Source

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
bool
View Source

Links

Shared links applicable to the path argument.

Declaration
public IList<SharedLinkMetadata> Links { get; protected set; }
Property Value
Type Description
IList<SharedLinkMetadata>
  • View Source
In this article
Back to top Dropbox .NET SDK