Dropbox .NET SDK
Show / Hide Table of Contents

Class FileIdOrUrl

The file id or url object

Inheritance
object
FileIdOrUrl
FileIdOrUrl.FileId
FileIdOrUrl.Other
FileIdOrUrl.Path
FileIdOrUrl.Url
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class FileIdOrUrl

Constructors

View Source

FileIdOrUrl()

Initializes a new instance of the FileIdOrUrl class.

Declaration
public FileIdOrUrl()

Properties

View Source

AsFileId

Gets this instance as a FileId, or null.

Declaration
public FileIdOrUrl.FileId AsFileId { get; }
Property Value
Type Description
FileIdOrUrl.FileId
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public FileIdOrUrl.Other AsOther { get; }
Property Value
Type Description
FileIdOrUrl.Other
View Source

AsPath

Gets this instance as a Path, or null.

Declaration
public FileIdOrUrl.Path AsPath { get; }
Property Value
Type Description
FileIdOrUrl.Path
View Source

AsUrl

Gets this instance as a Url, or null.

Declaration
public FileIdOrUrl.Url AsUrl { get; }
Property Value
Type Description
FileIdOrUrl.Url
View Source

IsFileId

Gets a value indicating whether this instance is FileId

Declaration
public bool IsFileId { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsPath

Gets a value indicating whether this instance is Path

Declaration
public bool IsPath { get; }
Property Value
Type Description
bool
View Source

IsUrl

Gets a value indicating whether this instance is Url

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