Dropbox .NET SDK
Show / Hide Table of Contents

Class OverwritePropertyGroupArg

The overwrite property group arg object

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

Constructors

View Source

OverwritePropertyGroupArg(string, IEnumerable<PropertyGroup>)

Initializes a new instance of the OverwritePropertyGroupArg class.

Declaration
public OverwritePropertyGroupArg(string path, IEnumerable<PropertyGroup> propertyGroups)
Parameters
Type Name Description
string path

A unique identifier for the file or folder.

IEnumerable<PropertyGroup> propertyGroups

The property groups "snapshot" updates to force apply. No two groups in the input should refer to the same template.

Properties

View Source

Path

A unique identifier for the file or folder.

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

PropertyGroups

The property groups "snapshot" updates to force apply. No two groups in the input should refer to the same template.

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