Dropbox .NET SDK
Show / Hide Table of Contents

Class AddFolderMemberArg

The add folder member arg object

Inheritance
object
AddFolderMemberArg
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 AddFolderMemberArg

Constructors

View Source

AddFolderMemberArg(string, IEnumerable<AddMember>, bool, string, string)

Initializes a new instance of the AddFolderMemberArg class.

Declaration
public AddFolderMemberArg(string sharedFolderId, IEnumerable<AddMember> members, bool quiet = false, string customMessage = null, string fpSealedResult = null)
Parameters
Type Name Description
string sharedFolderId

The ID for the shared folder.

IEnumerable<AddMember> members

The intended list of members to add. Added members will receive invites to join the shared folder.

bool quiet

Whether added members should be notified via email and device notifications of their invite.

string customMessage

Optional message to display to added members in their invitation.

string fpSealedResult

Field is only returned for "internal" callers. The FingerprintJS Sealed Client Result value

Properties

View Source

CustomMessage

Optional message to display to added members in their invitation.

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

FpSealedResult

Field is only returned for "internal" callers. The FingerprintJS Sealed Client Result value

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

Members

The intended list of members to add. Added members will receive invites to join the shared folder.

Declaration
public IList<AddMember> Members { get; protected set; }
Property Value
Type Description
IList<AddMember>
View Source

Quiet

Whether added members should be notified via email and device notifications of their invite.

Declaration
public bool Quiet { 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