Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateSharedLinkWithSettingsArg

The create shared link with settings arg object

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

Constructors

View Source

CreateSharedLinkWithSettingsArg(string, SharedLinkSettings)

Initializes a new instance of the CreateSharedLinkWithSettingsArg class.

Declaration
public CreateSharedLinkWithSettingsArg(string path, SharedLinkSettings settings = null)
Parameters
Type Name Description
string path

The path to be shared by the shared link.

SharedLinkSettings settings

The requested settings for the newly created shared link.

Properties

View Source

Path

The path to be shared by the shared link.

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

Settings

The requested settings for the newly created shared link.

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