Dropbox .NET SDK
Show / Hide Table of Contents

Class GetTemporaryLinkResult

The get temporary link result object

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

Constructors

View Source

GetTemporaryLinkResult(FileMetadata, string)

Initializes a new instance of the GetTemporaryLinkResult class.

Declaration
public GetTemporaryLinkResult(FileMetadata metadata, string link)
Parameters
Type Name Description
FileMetadata metadata

Metadata of the file.

string link

The temporary link which can be used to stream content the file.

Properties

View Source

Link

The temporary link which can be used to stream content the file.

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

Metadata

Metadata of the file.

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