Dropbox .NET SDK
Show / Hide Table of Contents

Class RemoveFileMemberArg

Arguments for RemoveFileMember2Async(RemoveFileMemberArg).

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

Constructors

View Source

RemoveFileMemberArg(string, MemberSelector)

Initializes a new instance of the RemoveFileMemberArg class.

Declaration
public RemoveFileMemberArg(string file, MemberSelector member)
Parameters
Type Name Description
string file

File from which to remove members.

MemberSelector member

Member to remove from this file. Note that even if an email is specified, it may result in the removal of a user (not an invitee) if the user's main account corresponds to that email address.

Properties

View Source

File

File from which to remove members.

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

Member

Member to remove from this file. Note that even if an email is specified, it may result in the removal of a user (not an invitee) if the user's main account corresponds to that email address.

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