Dropbox .NET SDK
Show / Hide Table of Contents

Class UserRootInfo

Root info when user is not member of a team or the user is a member of a team and the team does not have a separate root namespace.

Inheritance
object
RootInfo
UserRootInfo
Inherited Members
RootInfo.IsTeam
RootInfo.AsTeam
RootInfo.IsUser
RootInfo.AsUser
RootInfo.RootNamespaceId
RootInfo.HomeNamespaceId
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Common
Assembly: Dropbox.Api.dll
Syntax
public class UserRootInfo : RootInfo

Constructors

View Source

UserRootInfo(string, string, string)

Initializes a new instance of the UserRootInfo class.

Declaration
public UserRootInfo(string rootNamespaceId, string homeNamespaceId, string homePath = null)
Parameters
Type Name Description
string rootNamespaceId

The namespace ID for user's root namespace. It will be the namespace ID of the shared team root if the user is member of a team with a separate team root, or the user root if user is member of a team with separate distinct roots for users. Otherwise it will be the same as HomeNamespaceId.

string homeNamespaceId

The namespace ID for user's home namespace.

string homePath

The path for user's home directory under the distinct user root.

Properties

View Source

HomePath

The path for user's home directory under the distinct user root.

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