8 references to AttachedPropertyGetter
PresentationFramework (8)
src\Framework\System\Windows\Markup\BamlCollectionHolder.cs (2)
176else if (PropertyDefinition.AttachedPropertyGetter != null) 178_defaultCollection = PropertyDefinition.AttachedPropertyGetter.Invoke(null, new object[] { Parent });
src\Framework\System\Windows\Markup\BamlRecordReader.cs (6)
2111else if (propertyDefinition.AttachedPropertyGetter != null) 2114PushContext(ReaderFlags.PropertyComplexClr, propertyDefinition.AttachedPropertyGetter, propertyDefinition.PropertyType, 0); 5918Debug.Assert(this.AttachedPropertyGetter != null); 5919return this.AttachedPropertyGetter.ReturnType; 5940else if (this.AttachedPropertyGetter != null) 5942return this.AttachedPropertyGetter.Name.Substring("Get".Length);