Dropbox .NET SDK
Show / Hide Table of Contents

Class PathOrLink

The path or link object

Inheritance
object
PathOrLink
PathOrLink.Link
PathOrLink.Other
PathOrLink.Path
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 PathOrLink

Constructors

View Source

PathOrLink()

Initializes a new instance of the PathOrLink class.

Declaration
public PathOrLink()

Properties

View Source

AsLink

Gets this instance as a Link, or null.

Declaration
public PathOrLink.Link AsLink { get; }
Property Value
Type Description
PathOrLink.Link
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPath

Gets this instance as a Path, or null.

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

IsLink

Gets a value indicating whether this instance is Link

Declaration
public bool IsLink { 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
In this article
Back to top Dropbox .NET SDK