Parent Directory
|
Revision Log
|
Patch
--- trunk/TSAdminTool/ProSupport.cs 2012/07/11 16:36:27 16 +++ trunk/TSAdminTool/ProSupport.cs 2012/07/11 18:48:42 20 @@ -148,6 +148,7 @@ } // Adds an ACL entry for RW access on the specified file for Remote desktop users. + [Obsolete("GrantRWaccessForRemoteDesktopUsers has been deprecated - define user access rights via SQL Server")] public static void GrantRWaccessForRemoteDesktopUsers(string fileName) { // Get a FileSecurity object that represents the current security settings. @@ -163,6 +164,7 @@ } // Adds an ACL entry for ReadWriteModify access on the specified file for Remote desktop users. + [Obsolete("GrantRWMaccessForRemoteDesktopUsers has been deprecated - define user access rights via SQL Server")] public static void GrantRWMaccessForRemoteDesktopUsers(string fileName) { // Get a FileSecurity object that represents the current security settings. @@ -180,6 +182,7 @@ // (obsolete) // Adds an ACL entry for to deny modify access on the specified file for all users. + [Obsolete("DenyAccessRightModifyForUsers has been deprecated - define user access rights via SQL Server")] public static void DenyAccessRightModifyForUsers(string fileName) { // Get a FileSecurity object that represents the current security settings.
ViewVC Help | |
Powered by ViewVC 1.1.22 |