Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberPolicy

Policy governing who can be a member of a shared folder. Only applicable to folders owned by a user on a team.

Inheritance
object
MemberPolicy
MemberPolicy.Anyone
MemberPolicy.Other
MemberPolicy.Team
MemberPolicy.TeamAndApproved
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 MemberPolicy

Constructors

View Source

MemberPolicy()

Initializes a new instance of the MemberPolicy class.

Declaration
public MemberPolicy()

Properties

View Source

AsAnyone

Gets this instance as a Anyone, or null.

Declaration
public MemberPolicy.Anyone AsAnyone { get; }
Property Value
Type Description
MemberPolicy.Anyone
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public MemberPolicy.Other AsOther { get; }
Property Value
Type Description
MemberPolicy.Other
View Source

AsTeam

Gets this instance as a Team, or null.

Declaration
public MemberPolicy.Team AsTeam { get; }
Property Value
Type Description
MemberPolicy.Team
View Source

AsTeamAndApproved

Gets this instance as a TeamAndApproved, or null.

Declaration
public MemberPolicy.TeamAndApproved AsTeamAndApproved { get; }
Property Value
Type Description
MemberPolicy.TeamAndApproved
View Source

IsAnyone

Gets a value indicating whether this instance is Anyone

Declaration
public bool IsAnyone { get; }
Property Value
Type Description
bool
View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
bool
View Source

IsTeam

Gets a value indicating whether this instance is Team

Declaration
public bool IsTeam { get; }
Property Value
Type Description
bool
View Source

IsTeamAndApproved

Gets a value indicating whether this instance is TeamAndApproved

Declaration
public bool IsTeamAndApproved { get; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK