Dropbox .NET SDK
Show / Hide Table of Contents

Class FileMemberActionResult

Per-member result for AddFileMemberAsync(AddFileMemberArgs).

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

Constructors

View Source

FileMemberActionResult(MemberSelector, FileMemberActionIndividualResult, string, IEnumerable<string>)

Initializes a new instance of the FileMemberActionResult class.

Declaration
public FileMemberActionResult(MemberSelector member, FileMemberActionIndividualResult result, string sckeySha1 = null, IEnumerable<string> invitationSignature = null)
Parameters
Type Name Description
MemberSelector member

One of specified input members.

FileMemberActionIndividualResult result

The outcome of the action on this member.

string sckeySha1

The SHA-1 encrypted shared content key.

IEnumerable<string> invitationSignature

The sharing sender-recipient invitation signatures for the input member_id. A member_id can be a group and thus have multiple users and multiple invitation signatures.

Properties

View Source

InvitationSignature

The sharing sender-recipient invitation signatures for the input member_id. A member_id can be a group and thus have multiple users and multiple invitation signatures.

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

Member

One of specified input members.

Declaration
public MemberSelector Member { get; protected set; }
Property Value
Type Description
MemberSelector
View Source

Result

The outcome of the action on this member.

Declaration
public FileMemberActionIndividualResult Result { get; protected set; }
Property Value
Type Description
FileMemberActionIndividualResult
View Source

SckeySha1

The SHA-1 encrypted shared content key.

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