Class FolderSharingInfo
Sharing info for a folder which is contained in a shared folder or is a shared folder mount point.
Inherited Members
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class FolderSharingInfo : SharingInfo
Constructors
| Improve this Doc View SourceFolderSharingInfo(Boolean, String, String, Boolean, Boolean)
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 |
---|---|---|
System.Boolean | readOnly | True if the file or folder is inside a read-only shared folder. |
System.String | parentSharedFolderId | Set if the folder is contained by a shared folder. |
System.String | sharedFolderId | If this folder is a shared folder mount point, the ID of the shared folder mounted at this location. |
System.Boolean | 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. |
System.Boolean | noAccess | Specifies that the folder cannot be accessed by the user. |
Properties
| Improve this Doc View SourceNoAccess
Specifies that the folder cannot be accessed by the user.
Declaration
public bool NoAccess { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ParentSharedFolderId
Set if the folder is contained by a shared folder.
Declaration
public string ParentSharedFolderId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
---|---|
System.String |
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 |
---|---|
System.Boolean |