2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
37public sealed class ContentLocatorGroup : ContentLocatorBase, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
42public sealed class ContentLocator : ContentLocatorBase, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
287IList<ContentLocatorBase> locators = GenerateLocators(node); 323foreach (ContentLocatorBase locator in anchor.ContentLocators) 357public IList<ContentLocatorBase> GenerateLocators(Object selection) 374IList<ContentLocatorBase> returnLocators = null; 387returnLocators = new List<ContentLocatorBase>(0); 409public Object ResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel) 543internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes, ContentLocatorBase locator, out AttachmentLevel attachmentLevel) 603private int FindMatchingPrefix(ContentLocator[] prefixes, ContentLocatorBase locator, out bool matched) 656private IList<ContentLocatorBase> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection) 660List<ContentLocatorBase> locatorsToReturn = new List<ContentLocatorBase>(); 667IList<ContentLocatorBase> newLocators = null; 705ContentLocatorBase newLocator = GenerateLocatorGroup(startNode, selection); 740List<ContentLocatorBase> tempLocators = new List<ContentLocatorBase>(locatorsToReturn.Count * locatorParts.Count); 742foreach (ContentLocatorBase loc in locatorsToReturn) 768private ContentLocatorBase GenerateLocatorGroup(PathNode node, Object selection) 773IList<ContentLocatorBase> tempLocators = null; 901private Object InternalResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel) 1227private IList<ContentLocatorBase> Merge(ContentLocatorBase initialLocator, IList<ContentLocatorBase> additionalLocators) 1231List<ContentLocatorBase> res = new List<ContentLocatorBase>(1); 1239additionalLocators[i] = ((ContentLocatorBase)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
130foreach (ContentLocatorBase locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
369IList<ContentLocatorBase> locators = _locatorManager.GenerateLocators(dpv); 390foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
692IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(textRange); 1071IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(selection); 1078foreach (ContentLocatorBase locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
133foreach (ContentLocatorBase locator in _locators) 183ContentLocatorBase locator = (ContentLocatorBase)LocatorGroupSerializer.Deserialize(reader); 188ContentLocatorBase locator = (ContentLocatorBase)ListSerializer.Deserialize(reader); 297public Collection<ContentLocatorBase> ContentLocators 373private AnnotationObservableCollection<ContentLocatorBase> InternalLocators 379_locators = new AnnotationObservableCollection<ContentLocatorBase>(); 538private AnnotationObservableCollection<ContentLocatorBase> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1623foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
149internal abstract ContentLocatorBase Merge(ContentLocatorBase other);
System\Windows\Annotations\LocatorGroup.cs (5)
111foreach (ContentLocatorBase locator in _locators) 215internal override ContentLocatorBase Merge(ContentLocatorBase other) 224List<ContentLocatorBase> tempList = new List<ContentLocatorBase>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
369internal IList<ContentLocatorBase> DotProduct(IList<ContentLocatorPart> additionalLocatorParts) 371List<ContentLocatorBase> results = null; 376results = new List<ContentLocatorBase>(1); 381results = new List<ContentLocatorBase>(additionalLocatorParts.Count); 406internal override ContentLocatorBase Merge(ContentLocatorBase other)