MIP SDK - MIP SDK 中有哪些可用的用户权限?
MIP SDK - What are the available UserRights in MIP SDK?
我正在尝试将“PRINT”UserRight 应用到 ProtectionDescriptor,但它没有打开 PDF 文件内容。
尝试查找 MIP SDK 的用户权限列表。我试过“所有者”,它有效。但我不想赋予“OWNER”权利。任何帮助都会很棒。
var newRights = new List<UserRights>();
foreach (UserSet userset in options.userSet)
{
newRights.Add(new UserRights(new List<string> { userset.Users }, new List<string> { "PRINT" }));
};
ProtectionDescriptor protectionDescriptor = new ProtectionDescriptor(newRights);
您还必须包含 VIEW。 VIEW 是打开内容所需的基本权限。
完整权限在这里:https://docs.microsoft.com/en-us/azure/information-protection/configure-usage-rights
我正在尝试将“PRINT”UserRight 应用到 ProtectionDescriptor,但它没有打开 PDF 文件内容。 尝试查找 MIP SDK 的用户权限列表。我试过“所有者”,它有效。但我不想赋予“OWNER”权利。任何帮助都会很棒。
var newRights = new List<UserRights>();
foreach (UserSet userset in options.userSet)
{
newRights.Add(new UserRights(new List<string> { userset.Users }, new List<string> { "PRINT" }));
};
ProtectionDescriptor protectionDescriptor = new ProtectionDescriptor(newRights);
您还必须包含 VIEW。 VIEW 是打开内容所需的基本权限。
完整权限在这里:https://docs.microsoft.com/en-us/azure/information-protection/configure-usage-rights