Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamFolderMetadata

Properties of a team folder.

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

Constructors

View Source

TeamFolderMetadata(string, string, TeamFolderStatus, bool, SyncSetting, IEnumerable<ContentSyncSetting>, long)

Initializes a new instance of the TeamFolderMetadata class.

Declaration
public TeamFolderMetadata(string teamFolderId, string name, TeamFolderStatus status, bool isTeamSharedDropbox, SyncSetting syncSetting, IEnumerable<ContentSyncSetting> contentSyncSettings, long quotaLimit = 0)
Parameters
Type Name Description
string teamFolderId

The ID of the team folder.

string name

The name of the team folder.

TeamFolderStatus status

The status of the team folder.

bool isTeamSharedDropbox

True if this team folder is a shared team root.

SyncSetting syncSetting

The sync setting applied to this team folder.

IEnumerable<ContentSyncSetting> contentSyncSettings

Sync settings applied to contents of this team folder.

long quotaLimit

The quota limit in bytes for this team folder namespace tree.

Properties

View Source

ContentSyncSettings

Sync settings applied to contents of this team folder.

Declaration
public IList<ContentSyncSetting> ContentSyncSettings { get; protected set; }
Property Value
Type Description
IList<ContentSyncSetting>
View Source

IsTeamSharedDropbox

True if this team folder is a shared team root.

Declaration
public bool IsTeamSharedDropbox { get; protected set; }
Property Value
Type Description
bool
View Source

Name

The name of the team folder.

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

QuotaLimit

The quota limit in bytes for this team folder namespace tree.

Declaration
public long QuotaLimit { get; protected set; }
Property Value
Type Description
long
View Source

Status

The status of the team folder.

Declaration
public TeamFolderStatus Status { get; protected set; }
Property Value
Type Description
TeamFolderStatus
View Source

SyncSetting

The sync setting applied to this team folder.

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

TeamFolderId

The ID of the team folder.

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