2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
31public sealed class ContentLocatorGroup : ContentLocatorBase, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
35public sealed class ContentLocator : ContentLocatorBase, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
276IList<ContentLocatorBase> locators = GenerateLocators(node); 312foreach (ContentLocatorBase locator in anchor.ContentLocators) 346public IList<ContentLocatorBase> GenerateLocators(Object selection) 363IList<ContentLocatorBase> returnLocators = null; 376returnLocators = new List<ContentLocatorBase>(0); 398public Object ResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel) 532internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes, ContentLocatorBase locator, out AttachmentLevel attachmentLevel) 592private int FindMatchingPrefix(ContentLocator[] prefixes, ContentLocatorBase locator, out bool matched) 645private IList<ContentLocatorBase> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection) 649List<ContentLocatorBase> locatorsToReturn = new List<ContentLocatorBase>(); 656IList<ContentLocatorBase> newLocators = null; 694ContentLocatorBase newLocator = GenerateLocatorGroup(startNode, selection); 729List<ContentLocatorBase> tempLocators = new List<ContentLocatorBase>(locatorsToReturn.Count * locatorParts.Count); 731foreach (ContentLocatorBase loc in locatorsToReturn) 757private ContentLocatorBase GenerateLocatorGroup(PathNode node, Object selection) 762IList<ContentLocatorBase> tempLocators = null; 890private Object InternalResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel) 1216private IList<ContentLocatorBase> Merge(ContentLocatorBase initialLocator, IList<ContentLocatorBase> additionalLocators) 1220List<ContentLocatorBase> res = new List<ContentLocatorBase>(1); 1228additionalLocators[i] = ((ContentLocatorBase)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
123foreach (ContentLocatorBase locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
364IList<ContentLocatorBase> locators = _locatorManager.GenerateLocators(dpv); 385foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
680IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(textRange); 1059IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(selection); 1066foreach (ContentLocatorBase locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
127foreach (ContentLocatorBase locator in _locators) 177ContentLocatorBase locator = (ContentLocatorBase)LocatorGroupSerializer.Deserialize(reader); 182ContentLocatorBase locator = (ContentLocatorBase)ListSerializer.Deserialize(reader); 291public Collection<ContentLocatorBase> ContentLocators 367private AnnotationObservableCollection<ContentLocatorBase> InternalLocators 373_locators = new AnnotationObservableCollection<ContentLocatorBase>(); 532private AnnotationObservableCollection<ContentLocatorBase> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1611foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
145internal abstract ContentLocatorBase Merge(ContentLocatorBase other);
System\Windows\Annotations\LocatorGroup.cs (5)
105foreach (ContentLocatorBase locator in _locators) 209internal override ContentLocatorBase Merge(ContentLocatorBase other) 218List<ContentLocatorBase> tempList = new List<ContentLocatorBase>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
362internal IList<ContentLocatorBase> DotProduct(IList<ContentLocatorPart> additionalLocatorParts) 364List<ContentLocatorBase> results = null; 369results = new List<ContentLocatorBase>(1); 374results = new List<ContentLocatorBase>(additionalLocatorParts.Count); 399internal override ContentLocatorBase Merge(ContentLocatorBase other)