2 types derived from ContentLocatorBase
PresentationFramework (2)
System\Windows\Annotations\LocatorGroup.cs (1)
30public sealed class ContentLocatorGroup : ContentLocatorBase, IXmlSerializable
System\Windows\Annotations\LocatorPartList.cs (1)
21public sealed class ContentLocator : ContentLocatorBase, IXmlSerializable
54 references to ContentLocatorBase
PresentationFramework (54)
MS\Internal\Annotations\Anchoring\LocatorManager.cs (25)
264IList<ContentLocatorBase> locators = GenerateLocators(node); 300foreach (ContentLocatorBase locator in anchor.ContentLocators) 334public IList<ContentLocatorBase> GenerateLocators(Object selection) 351IList<ContentLocatorBase> returnLocators = null; 364returnLocators = new List<ContentLocatorBase>(0); 386public Object ResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, out AttachmentLevel attachmentLevel) 519internal Object FindAttachedAnchor(DependencyObject startNode, ContentLocator[] prefixes, ContentLocatorBase locator, out AttachmentLevel attachmentLevel) 579private int FindMatchingPrefix(ContentLocator[] prefixes, ContentLocatorBase locator, out bool matched) 632private IList<ContentLocatorBase> GenerateLocators(SubTreeProcessor processor, PathNode startNode, Object selection) 636List<ContentLocatorBase> locatorsToReturn = new List<ContentLocatorBase>(); 643IList<ContentLocatorBase> newLocators = null; 681ContentLocatorBase newLocator = GenerateLocatorGroup(startNode, selection); 716List<ContentLocatorBase> tempLocators = new List<ContentLocatorBase>(locatorsToReturn.Count * locatorParts.Count); 718foreach (ContentLocatorBase loc in locatorsToReturn) 744private ContentLocatorBase GenerateLocatorGroup(PathNode node, Object selection) 749IList<ContentLocatorBase> tempLocators = null; 877private Object InternalResolveLocator(ContentLocatorBase locator, int offset, DependencyObject startNode, bool skipStartNode, out AttachmentLevel attachmentLevel) 1205private IList<ContentLocatorBase> Merge(ContentLocatorBase initialLocator, IList<ContentLocatorBase> additionalLocators) 1209List<ContentLocatorBase> res = new List<ContentLocatorBase>(1); 1217additionalLocators[i] = ((ContentLocatorBase)initialLocator.Clone()).Merge(additionalLocators[i]);
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
122foreach (ContentLocatorBase locator in resource.ContentLocators)
System\Windows\Annotations\AnnotationDocumentPaginator.cs (2)
367IList<ContentLocatorBase> locators = _locatorManager.GenerateLocators(dpv); 388foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\AnnotationHelper.cs (3)
677IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(textRange); 1056IList<ContentLocatorBase> locators = service.LocatorManager.GenerateLocators(selection); 1063foreach (ContentLocatorBase locator in locators)
System\Windows\Annotations\AnnotationResource.cs (9)
126foreach (ContentLocatorBase locator in _locators) 173ContentLocatorBase locator = (ContentLocatorBase)LocatorGroupSerializer.Deserialize(reader); 178ContentLocatorBase locator = (ContentLocatorBase)ListSerializer.Deserialize(reader); 287public Collection<ContentLocatorBase> ContentLocators 363private AnnotationObservableCollection<ContentLocatorBase> InternalLocators 369_locators = new AnnotationObservableCollection<ContentLocatorBase>(); 528private AnnotationObservableCollection<ContentLocatorBase> _locators;
System\Windows\Annotations\AnnotationService.cs (1)
1605foreach (ContentLocatorBase locator in anchor.ContentLocators)
System\Windows\Annotations\LocatorBase.cs (2)
144internal abstract ContentLocatorBase Merge(ContentLocatorBase other);
System\Windows\Annotations\LocatorGroup.cs (5)
104foreach (ContentLocatorBase locator in _locators) 208internal override ContentLocatorBase Merge(ContentLocatorBase other) 217List<ContentLocatorBase> tempList = new List<ContentLocatorBase>(locatorGroup.Locators.Count * (this.Locators.Count - 1));
System\Windows\Annotations\LocatorPartList.cs (6)
347internal IList<ContentLocatorBase> DotProduct(IList<ContentLocatorPart> additionalLocatorParts) 349List<ContentLocatorBase> results = null; 354results = new List<ContentLocatorBase>(1); 359results = new List<ContentLocatorBase>(additionalLocatorParts.Count); 384internal override ContentLocatorBase Merge(ContentLocatorBase other)