Dropbox .NET SDK
Show / Hide Table of Contents

Class ListSharedLinksArg

The list shared links arg object

Inheritance
object
ListSharedLinksArg
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 ListSharedLinksArg

Constructors

View Source

ListSharedLinksArg(string, string, bool?)

Initializes a new instance of the ListSharedLinksArg class.

Declaration
public ListSharedLinksArg(string path = null, string cursor = null, bool? directOnly = null)
Parameters
Type Name Description
string path

See ListSharedLinksAsync(ListSharedLinksArg) description.

string cursor

The cursor returned by your last call to ListSharedLinksAsync(ListSharedLinksArg).

bool? directOnly

See ListSharedLinksAsync(ListSharedLinksArg) description.

Properties

View Source

Cursor

The cursor returned by your last call to ListSharedLinksAsync(ListSharedLinksArg).

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

DirectOnly

See ListSharedLinksAsync(ListSharedLinksArg) description.

Declaration
public bool? DirectOnly { get; protected set; }
Property Value
Type Description
bool?
View Source

Path

See ListSharedLinksAsync(ListSharedLinksArg) description.

Declaration
public string Path { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK