Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamFolderCreateArg

The team folder create arg object

Inheritance
object
TeamFolderCreateArg
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 TeamFolderCreateArg

Constructors

View Source

TeamFolderCreateArg(string, SyncSettingArg)

Initializes a new instance of the TeamFolderCreateArg class.

Declaration
public TeamFolderCreateArg(string name, SyncSettingArg syncSetting = null)
Parameters
Type Name Description
string name

Name for the new team folder.

SyncSettingArg syncSetting

The sync setting to apply to this team folder. Only permitted if the team has team selective sync enabled.

Properties

View Source

Name

Name for the new team folder.

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

SyncSetting

The sync setting to apply to this team folder. Only permitted if the team has team selective sync enabled.

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