Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamNamespacesListResult

Result for NamespacesListAsync(TeamNamespacesListArg).

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

Constructors

View Source

TeamNamespacesListResult(IEnumerable<NamespaceMetadata>, string, bool)

Initializes a new instance of the TeamNamespacesListResult class.

Declaration
public TeamNamespacesListResult(IEnumerable<NamespaceMetadata> namespaces, string cursor, bool hasMore)
Parameters
Type Name Description
IEnumerable<NamespaceMetadata> namespaces

List of all namespaces the team can access.

string cursor

Pass the cursor into NamespacesListContinueAsync(TeamNamespacesListContinueArg) to obtain additional namespaces. Note that duplicate namespaces may be returned.

bool hasMore

Is true if there are additional namespaces that have not been returned yet.

Properties

View Source

Cursor

Pass the cursor into NamespacesListContinueAsync(TeamNamespacesListContinueArg) to obtain additional namespaces. Note that duplicate namespaces may be returned.

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

HasMore

Is true if there are additional namespaces that have not been returned yet.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
bool
View Source

Namespaces

List of all namespaces the team can access.

Declaration
public IList<NamespaceMetadata> Namespaces { get; protected set; }
Property Value
Type Description
IList<NamespaceMetadata>
  • View Source
In this article
Back to top Dropbox .NET SDK