Dropbox .NET SDK
Show / Hide Table of Contents

Class NamespaceMetadata

Properties of a namespace.

Inheritance
object
NamespaceMetadata
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 NamespaceMetadata

Constructors

View Source

NamespaceMetadata(string, string, NamespaceType, string, long)

Initializes a new instance of the NamespaceMetadata class.

Declaration
public NamespaceMetadata(string name, string namespaceId, NamespaceType namespaceType, string teamMemberId = null, long quotaLimit = 0)
Parameters
Type Name Description
string name

The name of this namespace.

string namespaceId

The ID of this namespace.

NamespaceType namespaceType

The type of this namespace.

string teamMemberId

If this is a team member or app folder, the ID of the owning team member. Otherwise, this field is not present.

long quotaLimit

The quota limit in bytes for this namespace tree. Only applicable to team folders.

Properties

View Source

Name

The name of this namespace.

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

NamespaceId

The ID of this namespace.

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

NamespaceType

The type of this namespace.

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

QuotaLimit

The quota limit in bytes for this namespace tree. Only applicable to team folders.

Declaration
public long QuotaLimit { get; protected set; }
Property Value
Type Description
long
View Source

TeamMemberId

If this is a team member or app folder, the ID of the owning team member. Otherwise, this field is not present.

Declaration
public string TeamMemberId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK