2 instantiations of ContentGrant
WindowsBase (2)
Base\MS\Internal\Security\RightsManagement\IssuanceLicense.cs (1)
324new ContentGrant(user, right.Value, validFrom, validUntil));
Base\System\Security\RightsManagement\CryptoProvider.cs (1)
317grantList.Add(new ContentGrant(_owner, contentRight.Value, rightsInfo.ValidFrom, rightsInfo.ValidUntil));
13 references to ContentGrant
WindowsBase (13)
Base\MS\Internal\Security\RightsManagement\IssuanceLicense.cs (5)
51ICollection<ContentGrant> grantCollection, 85ICollection<ContentGrant> grantCollection, 169foreach (ContentGrant grant in grantCollection) 414private void AddGrant(ContentGrant grant) 457private SafeRightsManagementPubHandle GetRightHandle(ContentGrant grant)
Base\System\Security\RightsManagement\CryptoProvider.cs (5)
298public ReadOnlyCollection<ContentGrant> BoundGrants 309List<ContentGrant> grantList = new List<ContentGrant>(_boundRightsInfoList.Count); 320_boundGrantReadOnlyCollection = new ReadOnlyCollection<ContentGrant> (grantList); 575private ReadOnlyCollection<ContentGrant> _boundGrantReadOnlyCollection;
Base\System\Security\RightsManagement\UnsignedPublishLicense.cs (3)
60_grantCollection = new Collection<ContentGrant>(); 233public ICollection<ContentGrant> Grants 382private ICollection<ContentGrant> _grantCollection;