Dropbox .NET SDK
Show / Hide Table of Contents

Class Folder

Data structure representing a Paper folder.

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

Constructors

View Source

Folder(string, string)

Initializes a new instance of the Folder class.

Declaration
public Folder(string id, string name)
Parameters
Type Name Description
string id

Paper folder ID. This ID uniquely identifies the folder.

string name

Paper folder name.

Properties

View Source

Id

Paper folder ID. This ID uniquely identifies the folder.

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

Name

Paper folder name.

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