5 instantiations of ArrayExtension
PresentationFramework (5)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (2)
1791DefaultConstructor = delegate () { return new System.Windows.Markup.ArrayExtension(); }, 1798return new System.Windows.Markup.ArrayExtension(
System\Windows\Markup\BamlRecordReader.cs (1)
3122ArrayExtension arrayExt = new ArrayExtension
System\Windows\Markup\KnownTypes.cs (1)
1124case KnownElements.ArrayExtension: o = new System.Windows.Markup.ArrayExtension(); break;
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
942return new ArrayExtension(array);
21 references to ArrayExtension
PresentationFramework (20)
OtherAssemblyAttrs.cs (1)
12[assembly: TypeForwardedTo(typeof(System.Windows.Markup.ArrayExtension))]
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
107case 14: t = () => typeof(ArrayExtension); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4286Type type = typeof(System.Windows.Markup.ArrayExtension); 4288this.GetXamlType(typeof(System.Windows.Markup.ArrayExtension)), // DeclaringType 4295GetDelegate = delegate (object target) { return ((System.Windows.Markup.ArrayExtension)target).Items; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
1788typeof(System.Windows.Markup.ArrayExtension),
System\Windows\Markup\BamlCollectionHolder.cs (2)
58internal ArrayExtension ArrayExt 60get { return _collection as ArrayExtension; }
System\Windows\Markup\BamlRecordReader.cs (9)
884else if (typeof(ArrayExtension).IsAssignableFrom(elementType)) 2994ArrayExtension arrayExt = holder.ArrayExt; 3122ArrayExtension arrayExt = new ArrayExtension 3227private ArrayExtension GetArrayExtensionFromContext(ReaderContextStackData context) 3229ArrayExtension result = null; 3233result = context.ObjectData as ArrayExtension; 3237result = (ArrayExtension)context.ObjectData; 4658ArrayExtension arrayExt = GetArrayExtensionFromContext(parentContext); 4842elementType = ((ArrayExtension)element).Type.MakeArrayType();
System\Windows\Markup\KnownTypes.cs (1)
5561case KnownElements.ArrayExtension: t = typeof(System.Windows.Markup.ArrayExtension); break;
System\Windows\Markup\Primitives\MarkupWriter.cs (2)
1009ArrayExtension arrayExt = instance as ArrayExtension;
System.Xaml (1)
System\Xaml\XamlLanguage.cs (1)
59new Lazy<XamlType>(() => GetXamlType(typeof(ArrayExtension)));