26 references to Dependency
PresentationUI (26)
MS\Internal\Documents\Application\DocumentManager.cs (12)
327if ((document.Dependency != null) && (document.Dependency.Workspace == null)) 347if ((document.Dependency != null) && (document.Dependency.Source == null)) 367if ((document.Dependency != null) && (document.Dependency.Source == null)) 388if ((document.Dependency != null) && (document.Dependency.Destination == null)) 408if ((document.Dependency != null) && (document.Dependency.Destination == null)) 429if ((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)
41Invariant.Assert(Dependency != null); 42return Dependency.Destination; 53Invariant.Assert(Dependency != null); 54return Dependency.Source; 65Invariant.Assert(Dependency != null); 66return 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;