26 references to Dependency
PresentationUI (26)
MS\Internal\Documents\Application\DocumentManager.cs (12)
326if ((document.Dependency != null) && (document.Dependency.Workspace == null)) 346if ((document.Dependency != null) && (document.Dependency.Source == null)) 366if ((document.Dependency != null) && (document.Dependency.Source == null)) 387if ((document.Dependency != null) && (document.Dependency.Destination == null)) 407if ((document.Dependency != null) && (document.Dependency.Destination == null)) 428if ((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; 194Stream ciphered = doc.Dependency.Source; 292Stream ciphered = doc.Dependency.Destination; 321doc.Dependency.Destination);
MS\Internal\Documents\Application\RightsDocument.cs (2)
42Stream destinationStream = this.Dependency.Destination; 58Stream sourceStream = this.Dependency.Source;