26 references to Dependency
PresentationUI (26)
MS\Internal\Documents\Application\DocumentManager.cs (12)
325if ((document.Dependency != null) && (document.Dependency.Workspace == null)) 345if ((document.Dependency != null) && (document.Dependency.Source == null)) 365if ((document.Dependency != null) && (document.Dependency.Source == null)) 386if ((document.Dependency != null) && (document.Dependency.Destination == null)) 406if ((document.Dependency != null) && (document.Dependency.Destination == null)) 427if ((document.Dependency != null) && (document.Dependency.Destination == null))
MS\Internal\Documents\Application\PackageController.cs (1)
166RightsDocument rightsDoc = document.Dependency as RightsDocument;
MS\Internal\Documents\Application\PackageDocument.cs (6)
38Invariant.Assert(Dependency != null); 39return Dependency.Destination; 50Invariant.Assert(Dependency != null); 51return Dependency.Source; 62Invariant.Assert(Dependency != null); 63return Dependency.Workspace;
MS\Internal\Documents\Application\RightsController.cs (5)
39Stream ciphered = doc.Dependency.Workspace; 107Stream ciphered = doc.Dependency.Source; 195Stream ciphered = doc.Dependency.Source; 294Stream ciphered = doc.Dependency.Destination; 323doc.Dependency.Destination);
MS\Internal\Documents\Application\RightsDocument.cs (2)
42Stream destinationStream = this.Dependency.Destination; 58Stream sourceStream = this.Dependency.Source;