IPWorks Cloud 2020 .NET Edition

Questions / Feedback?

UpdatePermission Method

Updates the permission from the Permission* properties.

Syntax

public void UpdatePermission(int index, bool recursive);
Public Sub UpdatePermission(ByVal Index As Integer, ByVal Recursive As Boolean)

Remarks

The permission at Index in the Permissions collection will be updated.

The following properties can be updated from the ShareFilePermission type:

  • CanDelete
  • CanDownload
  • CanManagePermissions
  • CanUpload
  • CanView
  • NotifyOnDownload
  • NotifyOnUpload

// Updates permission so that the user does not have permission to download from the folder.
shareFile.Permissions[1].CanDownload = false;
shareFile.UpdatePermission(1, true);

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 .NET Edition - Version 20.0 [Build 8265]