Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些下载 CMIS 文档的代码:
contentStream = remoteDocument.getContentStream();
检查当前 CMIS 用户是否对该文档的数据内容具有写入权限的最有效方法是什么?
最好不要发出额外的 CMIS 请求。
AllowableActions.Actions 包含以下信息:
bool writeable = document.AllowableActions.Actions.Contains( PermissionMappingKeys.CanSetContentDocument)
不过,如果有什么更有效的方法,我很想听听。