Click or drag to resize
PathPermissions Enumeration
Represents the actions which will be allowed on the FileBrowserItem.

Namespace: Kettic.AspNet.Controls.Widgets
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
[FlagsAttribute]
public enum PathPermissions
Members
  Member nameValueDescription
Read1 The default permission. The FileBrowserItem can only be displayed.
Upload2 Used for DirectoryItems. If enabled, the Upload tab of the dialog will be enabled when the DirectoryItem is opened.
Delete4 If enabled, the DirectoryItem or the FileItem can be deleted.
Remarks

If you want to specify multiple permissions, use the following syntax:

            Dim permissions As PathPermissions = PathPermissions.Read Or PathPermissions.Upload Or PathPermissions.Delete
            
See Also