Dropbox .NET SDK
Show / Hide Table of Contents

Class SharedFolderJoinPolicy

Policy governing which shared folders a team member can join.

Inheritance
object
SharedFolderJoinPolicy
SharedFolderJoinPolicy.FromAnyone
SharedFolderJoinPolicy.FromTeamOnly
SharedFolderJoinPolicy.Other
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamPolicies
Assembly: Dropbox.Api.dll
Syntax
public class SharedFolderJoinPolicy

Constructors

View Source

SharedFolderJoinPolicy()

Initializes a new instance of the SharedFolderJoinPolicy class.

Declaration
public SharedFolderJoinPolicy()

Properties

View Source

AsFromAnyone

Gets this instance as a FromAnyone, or null.

Declaration
public SharedFolderJoinPolicy.FromAnyone AsFromAnyone { get; }
Property Value
Type Description
SharedFolderJoinPolicy.FromAnyone
View Source

AsFromTeamOnly

Gets this instance as a FromTeamOnly, or null.

Declaration
public SharedFolderJoinPolicy.FromTeamOnly AsFromTeamOnly { get; }
Property Value
Type Description
SharedFolderJoinPolicy.FromTeamOnly
View Source

AsOther

Gets this instance as a Other, or null.

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

IsFromAnyone

Gets a value indicating whether this instance is FromAnyone

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

IsFromTeamOnly

Gets a value indicating whether this instance is FromTeamOnly

Declaration
public bool IsFromTeamOnly { 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
In this article
Back to top Dropbox .NET SDK