Show / Hide Table of Contents

Class TeamNamespacesListResult

Result for NamespacesListAsync(TeamNamespacesListArg).

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

Constructors

| Improve this Doc View Source

TeamNamespacesListResult(IEnumerable<NamespaceMetadata>, String, Boolean)

Initializes a new instance of the TeamNamespacesListResult class.

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

List of all namespaces the team can access.

System.String cursor

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

System.Boolean hasMore

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

Properties

| Improve this Doc 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
System.String
| Improve this Doc 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
System.Boolean
| Improve this Doc View Source

Namespaces

List of all namespaces the team can access.

Declaration
public IList<NamespaceMetadata> Namespaces { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<NamespaceMetadata>
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • TeamNamespacesListResult(IEnumerable<NamespaceMetadata>, String, Boolean)
  • Properties
    • Cursor
    • HasMore
    • Namespaces
Back to top Generated by DocFX