26 references to Dependency
PresentationUI (26)
MS\Internal\Documents\Application\DocumentManager.cs (12)
324if ((document.Dependency != null) && (document.Dependency.Workspace == null)) 344if ((document.Dependency != null) && (document.Dependency.Source == null)) 364if ((document.Dependency != null) && (document.Dependency.Source == null)) 385if ((document.Dependency != null) && (document.Dependency.Destination == null)) 405if ((document.Dependency != null) && (document.Dependency.Destination == null)) 426if ((document.Dependency != null) && (document.Dependency.Destination == null))
MS\Internal\Documents\Application\PackageController.cs (1)
165RightsDocument rightsDoc = document.Dependency as RightsDocument;
MS\Internal\Documents\Application\PackageDocument.cs (6)
37Invariant.Assert(Dependency != null); 38return Dependency.Destination; 49Invariant.Assert(Dependency != null); 50return Dependency.Source; 61Invariant.Assert(Dependency != null); 62return Dependency.Workspace;
MS\Internal\Documents\Application\RightsController.cs (5)
38Stream ciphered = doc.Dependency.Workspace; 106Stream ciphered = doc.Dependency.Source; 194Stream ciphered = doc.Dependency.Source; 293Stream ciphered = doc.Dependency.Destination; 322doc.Dependency.Destination);
MS\Internal\Documents\Application\RightsDocument.cs (2)
42Stream destinationStream = this.Dependency.Destination; 58Stream sourceStream = this.Dependency.Source;