Dropbox .NET SDK
Show / Hide Table of Contents

Class MinimalFileLinkMetadata

The minimal file link metadata object

Inheritance
object
MinimalFileLinkMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class MinimalFileLinkMetadata

Constructors

View Source

MinimalFileLinkMetadata(string, string, string, string)

Initializes a new instance of the MinimalFileLinkMetadata class.

Declaration
public MinimalFileLinkMetadata(string url, string rev, string id = null, string path = null)
Parameters
Type Name Description
string url

URL of the shared link.

string rev

A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts.

string id

Unique identifier for the linked file.

string path

Full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's Dropbox.

Properties

View Source

Id

Unique identifier for the linked file.

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

Path

Full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's Dropbox.

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

Rev

A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts.

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

Url

URL of the shared link.

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