Show / Hide Table of Contents

Class ListSharedLinksResult

The list shared links result object

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

Constructors

| Improve this Doc View Source

ListSharedLinksResult(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 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
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • ListSharedLinksResult(IEnumerable<SharedLinkMetadata>, Boolean, String)
  • Properties
    • Cursor
    • HasMore
    • Links
Back to top Generated by DocFX