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 SourceTeamNamespacesListResult(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 SourceCursor
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 |
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 |
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> |