2 instantiations of DocumentReference
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3720bamlType.DefaultConstructor = delegate() { return new System.Windows.Documents.DocumentReference(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1236case KnownElements.DocumentReference: o = new System.Windows.Documents.DocumentReference(); break;
42 references to DocumentReference
PresentationFramework (42)
src\Framework\System\Windows\Documents\ChildDocumentBlock.cs (3)
58internal ChildDocumentBlock(DocumentSequenceTextContainer aggregatedContainer, DocumentReference docRef) 142internal DocumentReference DocRef 278private readonly DocumentReference _docRef; // Reference to the sub-document
src\Framework\System\Windows\Documents\DocumentReference.cs (3)
150typeof(DocumentReference), 159DocumentReference docRef = (DocumentReference)d;
src\Framework\System\Windows\Documents\DocumentReferenceCollection.cs (9)
28public sealed class DocumentReferenceCollection : IEnumerable<DocumentReference>, INotifyCollectionChanged 54public IEnumerator<DocumentReference> GetEnumerator() 62return ((IEnumerable<DocumentReference>)this).GetEnumerator(); 71public void Add(DocumentReference item) 83public void CopyTo(DocumentReference[] array, int arrayIndex) 106public DocumentReference this[int index] 145private IList<DocumentReference> _InternalList 151_internalList = new List<DocumentReference>(); 187private List<DocumentReference> _internalList;
src\Framework\System\Windows\Documents\DocumentSequence.cs (19)
120DocumentReference docRef = value as DocumentReference; 124throw new ArgumentException(SR.Get(SRID.UnexpectedParameterType, value.GetType(), typeof(DocumentReference)), "value"); 199foreach (DocumentReference docRef in References) 229DocumentReference[] docArray = new DocumentReference[_references.Count]; 403foreach (DocumentReference docRef in References) 442foreach (DocumentReference docRef in References) 475foreach (DocumentReference docRef in References) 592internal DynamicDocumentPaginator GetPaginator(DocumentReference docRef) 633foreach (DocumentReference docRef in References) 707foreach (DocumentReference docRef in References) 742DocumentReference docRef = (DocumentReference)sender; 771DynamicDocumentPaginator paginator = GetPaginator((DocumentReference)item); 799foreach (DocumentReference docRef in References) 983private DocumentReference _partialRef; // uninitialized doc that is currently parsed. 1196internal DocumentReference ChildDocumentReference 1200foreach (DocumentReference docRef in _fixedDocumentSequence.References)
src\Framework\System\Windows\Documents\DocumentSequenceTextContainer.cs (3)
403internal ChildDocumentBlock FindChildBlock(DocumentReference docRef) 534foreach (DocumentReference docRef in _parent.References) 632ChildDocumentBlock newBlock = new ChildDocumentBlock(this, (DocumentReference)item);
src\Framework\System\Windows\Documents\FixedDocument.cs (2)
837internal DocumentReference DocumentReference 1347private DocumentReference _documentReference;
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
257case 165: t = () => typeof(DocumentReference); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3718typeof(System.Windows.Documents.DocumentReference),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
5709case KnownElements.DocumentReference: t = typeof(System.Windows.Documents.DocumentReference); break;