Dropbox .NET SDK
Show / Hide Table of Contents

Class CreateFolderBatchResult

The create folder batch result object

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

Constructors

View Source

CreateFolderBatchResult(IEnumerable<CreateFolderBatchResultEntry>)

Initializes a new instance of the CreateFolderBatchResult class.

Declaration
public CreateFolderBatchResult(IEnumerable<CreateFolderBatchResultEntry> entries)
Parameters
Type Name Description
IEnumerable<CreateFolderBatchResultEntry> entries

Each entry in Paths will appear at the same position inside Entries.

Properties

View Source

Entries

Each entry in Paths will appear at the same position inside Entries.

Declaration
public IList<CreateFolderBatchResultEntry> Entries { get; protected set; }
Property Value
Type Description
IList<CreateFolderBatchResultEntry>
  • View Source
In this article
Back to top Dropbox .NET SDK