40 references to ContentRight
WindowsBase (40)
Base\MS\Internal\Security\RightsManagement\ClientSession.cs (16)
1960internal static Nullable<ContentRight> GetRightFromString(string rightName) 1976internal static string GetStringFromRight(ContentRight right) 2035static private ContentRight[] _rightEnums = { 2036ContentRight.View, 2037ContentRight.Edit, 2038ContentRight.Print, 2039ContentRight.Extract, 2040ContentRight.ObjectModel, 2041ContentRight.Owner, 2042ContentRight.ViewRightsData, 2043ContentRight.Forward, 2044ContentRight.Reply, 2045ContentRight.ReplyAll, 2046ContentRight.Sign, 2047ContentRight.DocumentEdit, 2048ContentRight.Export};
Base\MS\Internal\Security\RightsManagement\IssuanceLicense.cs (3)
309Nullable<ContentRight> right = GetIssuanceLicenseUserRight 524static private Nullable<ContentRight> GetRightFromHandle(SafeRightsManagementPubHandle rightHandle, 790private Nullable<ContentRight> GetIssuanceLicenseUserRight
Base\System\Security\RightsManagement\CryptoProvider.cs (4)
313Nullable<ContentRight> contentRight = ClientSession.GetRightFromString(rightsInfo.RightName); 535Nullable<ContentRight> right = 540((right.Value == ContentRight.Owner) ||(right.Value== ContentRight.ViewRightsData)))
Base\System\Security\RightsManagement\Grant.cs (17)
46public ContentGrant(ContentUser user, ContentRight right) 55public ContentGrant(ContentUser user, ContentRight right, DateTime validFrom, DateTime validUntil) 65if ((right != ContentRight.View) && 66(right != ContentRight.Edit) && 67(right != ContentRight.Print) && 68(right != ContentRight.Extract) && 69(right != ContentRight.ObjectModel) && 70(right != ContentRight.Owner) && 71(right != ContentRight.ViewRightsData) && 72(right != ContentRight.Forward) && 73(right != ContentRight.Reply) && 74(right != ContentRight.ReplyAll) && 75(right != ContentRight.Sign) && 76(right != ContentRight.DocumentEdit) && 77(right != ContentRight.Export)) 111public ContentRight Right 147private ContentRight _right;