Dropbox .NET SDK
Show / Hide Table of Contents

Class FolderSharingInfo

Sharing info for a folder which is contained in a shared folder or is a shared folder mount point.

Inheritance
object
SharingInfo
FolderSharingInfo
Inherited Members
SharingInfo.ReadOnly
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class FolderSharingInfo : SharingInfo

Constructors

View Source

FolderSharingInfo(bool, string, string, bool, bool)

Initializes a new instance of the FolderSharingInfo class.

Declaration
public FolderSharingInfo(bool readOnly, string parentSharedFolderId = null, string sharedFolderId = null, bool traverseOnly = false, bool noAccess = false)
Parameters
Type Name Description
bool readOnly

True if the file or folder is inside a read-only shared folder.

string parentSharedFolderId

Set if the folder is contained by a shared folder.

string sharedFolderId

If this folder is a shared folder mount point, the ID of the shared folder mounted at this location.

bool traverseOnly

Specifies that the folder can only be traversed and the user can only see a limited subset of the contents of this folder because they don't have read access to this folder. They do, however, have access to some sub folder.

bool noAccess

Specifies that the folder cannot be accessed by the user.

Properties

View Source

NoAccess

Specifies that the folder cannot be accessed by the user.

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

ParentSharedFolderId

Set if the folder is contained by a shared folder.

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

SharedFolderId

If this folder is a shared folder mount point, the ID of the shared folder mounted at this location.

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

TraverseOnly

Specifies that the folder can only be traversed and the user can only see a limited subset of the contents of this folder because they don't have read access to this folder. They do, however, have access to some sub folder.

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