Dropbox .NET SDK
Show / Hide Table of Contents

Class RelinquishFolderMembershipArg

The relinquish folder membership arg object

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

Constructors

View Source

RelinquishFolderMembershipArg(string, bool)

Initializes a new instance of the RelinquishFolderMembershipArg class.

Declaration
public RelinquishFolderMembershipArg(string sharedFolderId, bool leaveACopy = false)
Parameters
Type Name Description
string sharedFolderId

The ID for the shared folder.

bool leaveACopy

Keep a copy of the folder's contents upon relinquishing membership. This must be set to false when the folder is within a team folder or another shared folder.

Properties

View Source

LeaveACopy

Keep a copy of the folder's contents upon relinquishing membership. This must be set to false when the folder is within a team folder or another shared folder.

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

SharedFolderId

The ID for the shared folder.

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