-
How can I force a file to be opened in read-only mode in cases where a certain custom document status applies? For instance, a document can go through various stages: created, reviewed, approved. Once it’s approved nobody can modify it.
-
How do I tell a client through the WebDAV Server Engine for .NET api that certain operations are not supported, for instance moving and copying files.
How can I force a file to be opened in read-only mode in cases
Share
If you want to forbid copy and move operations in all cases, do it this way:
If you want to forbid copy/move/change a resource basing on some condition, I’ll recommend you to use custom handlers:
Hope this will help you.