26 references to Dependency
PresentationUI (26)
MS\Internal\Documents\Application\DocumentManager.cs (12)
330if ((document.Dependency != null) && (document.Dependency.Workspace == null)) 350if ((document.Dependency != null) && (document.Dependency.Source == null)) 370if ((document.Dependency != null) && (document.Dependency.Source == null)) 391if ((document.Dependency != null) && (document.Dependency.Destination == null)) 411if ((document.Dependency != null) && (document.Dependency.Destination == null)) 432if ((document.Dependency != null) && (document.Dependency.Destination == null))
MS\Internal\Documents\Application\PackageController.cs (1)
169RightsDocument rightsDoc = document.Dependency as RightsDocument;
MS\Internal\Documents\Application\PackageDocument.cs (6)
44Invariant.Assert(Dependency != null); 45return Dependency.Destination; 56Invariant.Assert(Dependency != null); 57return Dependency.Source; 68Invariant.Assert(Dependency != null); 69return Dependency.Workspace;
MS\Internal\Documents\Application\RightsController.cs (5)
44Stream ciphered = doc.Dependency.Workspace; 112Stream ciphered = doc.Dependency.Source; 199Stream ciphered = doc.Dependency.Source; 297Stream ciphered = doc.Dependency.Destination; 326doc.Dependency.Destination);
MS\Internal\Documents\Application\RightsDocument.cs (2)
44Stream destinationStream = this.Dependency.Destination; 60Stream sourceStream = this.Dependency.Source;