Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateSharedLinkArg

The create shared link arg object

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

Constructors

View Source

CreateSharedLinkArg(string, bool, PendingUploadMode)

Initializes a new instance of the CreateSharedLinkArg class.

Declaration
public CreateSharedLinkArg(string path, bool shortUrl = false, PendingUploadMode pendingUpload = null)
Parameters
Type Name Description
string path

The path to share.

bool shortUrl

Field is deprecated. None

PendingUploadMode pendingUpload

If it's okay to share a path that does not yet exist, set this to either PendingUploadMode.File or PendingUploadMode.Folder to indicate whether to assume it's a file or folder.

Properties

View Source

Path

The path to share.

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

PendingUpload

If it's okay to share a path that does not yet exist, set this to either PendingUploadMode.File or PendingUploadMode.Folder to indicate whether to assume it's a file or folder.

Declaration
public PendingUploadMode PendingUpload { get; protected set; }
Property Value
Type Description
PendingUploadMode
View Source

ShortUrl

Field is deprecated. None

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