Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupType

The group type determines how a group is created and managed.

Inheritance
object
GroupType
GroupType.Other
GroupType.Team
GroupType.UserManaged
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamCommon
Assembly: Dropbox.Api.dll
Syntax
public class GroupType

Constructors

View Source

GroupType()

Initializes a new instance of the GroupType class.

Declaration
public GroupType()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsTeam

Gets this instance as a Team, or null.

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

AsUserManaged

Gets this instance as a UserManaged, or null.

Declaration
public GroupType.UserManaged AsUserManaged { get; }
Property Value
Type Description
GroupType.UserManaged
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

IsUserManaged

Gets a value indicating whether this instance is UserManaged

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