Show / Hide Table of Contents

Class CreateFolderBatchArg

The create folder batch arg object

Inheritance
System.Object
CreateFolderBatchArg
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class CreateFolderBatchArg

Constructors

| Improve this Doc View Source

CreateFolderBatchArg(IEnumerable<String>, Boolean, Boolean)

Initializes a new instance of the CreateFolderBatchArg class.

Declaration
public CreateFolderBatchArg(IEnumerable<string> paths, bool autorename = false, bool forceAsync = false)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> paths

List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once.

System.Boolean autorename

If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict.

System.Boolean forceAsync

Whether to force the create to happen asynchronously.

Properties

| Improve this Doc View Source

Autorename

If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict.

Declaration
public bool Autorename { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

ForceAsync

Whether to force the create to happen asynchronously.

Declaration
public bool ForceAsync { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Paths

List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered only once.

Declaration
public IList<string> Paths { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • CreateFolderBatchArg(IEnumerable<String>, Boolean, Boolean)
  • Properties
    • Autorename
    • ForceAsync
    • Paths
Back to top Generated by DocFX