Dropbox .NET SDK
Show / Hide Table of Contents

Class ModifySharedLinkSettingsArgs

The modify shared link settings args object

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

Constructors

View Source

ModifySharedLinkSettingsArgs(string, SharedLinkSettings, bool)

Initializes a new instance of the ModifySharedLinkSettingsArgs class.

Declaration
public ModifySharedLinkSettingsArgs(string url, SharedLinkSettings settings, bool removeExpiration = false)
Parameters
Type Name Description
string url

URL of the shared link to change its settings.

SharedLinkSettings settings

Set of settings for the shared link.

bool removeExpiration

If set to true, removes the expiration of the shared link.

Properties

View Source

RemoveExpiration

If set to true, removes the expiration of the shared link.

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

Settings

Set of settings for the shared link.

Declaration
public SharedLinkSettings Settings { get; protected set; }
Property Value
Type Description
SharedLinkSettings
View Source

Url

URL of the shared link to change its settings.

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