Dropbox .NET SDK
Show / Hide Table of Contents

Class RelocationBatchArg

The relocation batch arg object

Inheritance
object
RelocationBatchArgBase
RelocationBatchArg
Inherited Members
RelocationBatchArgBase.Entries
RelocationBatchArgBase.Autorename
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 RelocationBatchArg : RelocationBatchArgBase

Constructors

View Source

RelocationBatchArg(IEnumerable<RelocationPath>, bool, bool, bool)

Initializes a new instance of the RelocationBatchArg class.

Declaration
public RelocationBatchArg(IEnumerable<RelocationPath> entries, bool autorename = false, bool allowSharedFolder = false, bool allowOwnershipTransfer = false)
Parameters
Type Name Description
IEnumerable<RelocationPath> entries

List of entries to be moved or copied. Each entry is RelocationPath.

bool autorename

If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid the conflict.

bool allowSharedFolder

Field is deprecated. This flag has no effect.

bool allowOwnershipTransfer

Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies.

Properties

View Source

AllowOwnershipTransfer

Allow moves by owner even if it would result in an ownership transfer for the content being moved. This does not apply to copies.

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

AllowSharedFolder

Field is deprecated. This flag has no effect.

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