Dropbox .NET SDK
Show / Hide Table of Contents

Class RelocationBatchArgBase

The relocation batch arg base object

Inheritance
object
RelocationBatchArgBase
MoveBatchArg
RelocationBatchArg
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 RelocationBatchArgBase

Constructors

View Source

RelocationBatchArgBase(IEnumerable<RelocationPath>, bool)

Initializes a new instance of the RelocationBatchArgBase class.

Declaration
public RelocationBatchArgBase(IEnumerable<RelocationPath> entries, bool autorename = 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.

Properties

View Source

Autorename

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

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

Entries

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

Declaration
public IList<RelocationPath> Entries { get; protected set; }
Property Value
Type Description
IList<RelocationPath>

See Also

MoveBatchArg
RelocationBatchArg
  • View Source
In this article
Back to top Dropbox .NET SDK