Dropbox .NET SDK
Show / Hide Table of Contents

Class DropboxDuration

The dropbox duration object

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

Constructors

View Source

DropboxDuration(long, int)

Initializes a new instance of the DropboxDuration class.

Declaration
public DropboxDuration(long seconds, int nanos)
Parameters
Type Name Description
long seconds

The seconds

int nanos

The nanos

Properties

View Source

Nanos

Gets the nanos of the dropbox duration

Declaration
public int Nanos { get; protected set; }
Property Value
Type Description
int
View Source

Seconds

Gets the seconds of the dropbox duration

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