Dropbox .NET SDK
Show / Hide Table of Contents

Class FileIdOrUrl.Url

Either a Dropbox shared link (www.dropbox.com) or an external HTTP or HTTPS URL pointing to a supported file. - Dropbox shared links are resolved internally using the caller's authenticated identity and the link's visibility / download settings. They therefore require an authenticated user context (anonymous `url` requests against Dropbox links are rejected with an `access_error`). Links protected by a password are rejected with `shared_link_password_protected`; links with downloads disabled are rejected with `link_download_disabled_error`. - External URLs are fetched through the backend's egress proxy and must point at a supported file extension.

Inheritance
object
FileIdOrUrl
FileIdOrUrl.Url
Inherited Members
FileIdOrUrl.IsFileId
FileIdOrUrl.AsFileId
FileIdOrUrl.IsUrl
FileIdOrUrl.AsUrl
FileIdOrUrl.IsPath
FileIdOrUrl.AsPath
FileIdOrUrl.IsOther
FileIdOrUrl.AsOther
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public sealed class FileIdOrUrl.Url : FileIdOrUrl

Constructors

View Source

Url(string)

Initializes a new instance of the FileIdOrUrl.Url class.

Declaration
public Url(string value)
Parameters
Type Name Description
string value

The value

Properties

View Source

Value

Gets the value of this instance.

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