Show / Hide Table of Contents

Class SharedFolderMetadataBase

Properties of the shared folder.

Inheritance
System.Object
SharedFolderMetadataBase
SharedFolderMetadata
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.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class SharedFolderMetadataBase

Constructors

| Improve this Doc View Source

SharedFolderMetadataBase(AccessLevel, Boolean, Boolean, IEnumerable<String>, Team, String, String, String)

Initializes a new instance of the SharedFolderMetadataBase class.

Declaration
public SharedFolderMetadataBase(AccessLevel accessType, bool isInsideTeamFolder, bool isTeamFolder, IEnumerable<string> ownerDisplayNames = null, Team ownerTeam = null, string parentSharedFolderId = null, string pathLower = null, string parentFolderName = null)
Parameters
Type Name Description
AccessLevel accessType

The current user's access level for this shared folder.

System.Boolean isInsideTeamFolder

Whether this folder is inside of a team folder.

System.Boolean isTeamFolder

Whether this folder is a team folder.

System.Collections.Generic.IEnumerable<System.String> ownerDisplayNames

The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.

Team ownerTeam

The team that owns the folder. This field is not present if the folder is not owned by a team.

System.String parentSharedFolderId

The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.

System.String pathLower

The lower-cased full path of this shared folder. Absent for unmounted folders.

System.String parentFolderName

Display name for the parent folder.

Properties

| Improve this Doc View Source

AccessType

The current user's access level for this shared folder.

Declaration
public AccessLevel AccessType { get; protected set; }
Property Value
Type Description
AccessLevel
| Improve this Doc View Source

IsInsideTeamFolder

Whether this folder is inside of a team folder.

Declaration
public bool IsInsideTeamFolder { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsTeamFolder

Whether this folder is a team folder.

Declaration
public bool IsTeamFolder { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

OwnerDisplayNames

The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.

Declaration
public IList<string> OwnerDisplayNames { get; protected set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>
| Improve this Doc View Source

OwnerTeam

The team that owns the folder. This field is not present if the folder is not owned by a team.

Declaration
public Team OwnerTeam { get; protected set; }
Property Value
Type Description
Team
| Improve this Doc View Source

ParentFolderName

Display name for the parent folder.

Declaration
public string ParentFolderName { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ParentSharedFolderId

The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.

Declaration
public string ParentSharedFolderId { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PathLower

The lower-cased full path of this shared folder. Absent for unmounted folders.

Declaration
public string PathLower { get; protected set; }
Property Value
Type Description
System.String

See Also

SharedFolderMetadata
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • SharedFolderMetadataBase(AccessLevel, Boolean, Boolean, IEnumerable<String>, Team, String, String, String)
  • Properties
    • AccessType
    • IsInsideTeamFolder
    • IsTeamFolder
    • OwnerDisplayNames
    • OwnerTeam
    • ParentFolderName
    • ParentSharedFolderId
    • PathLower
  • See Also
Back to top Generated by DocFX