1 type derived from StaticExtension
PresentationFramework (1)
MS\Internal\Markup\StaticExtension.cs (1)
22internal class StaticExtension : System.Windows.Markup.StaticExtension
8 instantiations of StaticExtension
PresentationFramework (8)
System\Windows\Markup\Baml2006\Baml2006Reader.cs (3)
887var staticExtension = new System.Windows.Markup.StaticExtension(propertyName) 1671new System.Windows.Markup.StaticExtension(staticExParam); 1732System.Windows.Markup.StaticExtension staticExtension = new System.Windows.Markup.StaticExtension((string)param)
System\Windows\Markup\BamlRecordReader.cs (2)
1444instance = new StaticExtension((string)param); 2358StaticExtension se = new StaticExtension
System\Windows\Markup\KnownTypes.cs (1)
1558case KnownElements.StaticExtension: o = new System.Windows.Markup.StaticExtension(); break;
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
933return new StaticExtension($"{typeName}.{enumValue}");
System\Windows\SystemKeyConverter.cs (1)
151return new StaticExtension($"{systemClassName}.{GetSystemKeyName(keyId)}");
14 references to StaticExtension
PresentationFramework (10)
OtherAssemblyAttrs.cs (1)
15[assembly: TypeForwardedTo(typeof(System.Windows.Markup.StaticExtension))]
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
695case 602: t = () => typeof(StaticExtension); break;
System\Windows\Markup\Baml2006\Baml2006Reader.cs (3)
887var staticExtension = new System.Windows.Markup.StaticExtension(propertyName) 1670System.Windows.Markup.StaticExtension staticExtension = 1732System.Windows.Markup.StaticExtension staticExtension = new System.Windows.Markup.StaticExtension((string)param)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10444typeof(System.Windows.Markup.StaticExtension),
System\Windows\Markup\BamlRecordReader.cs (2)
2358StaticExtension se = new StaticExtension 2403valueTypeName = typeof(StaticExtension).FullName;
System\Windows\Markup\KnownTypes.cs (1)
6149case KnownElements.StaticExtension: t = typeof(System.Windows.Markup.StaticExtension); break;
System\Windows\TemplateContent.cs (1)
1017&& typeofValue != typeof(StaticExtension))
System.Xaml (4)
System\Windows\Markup\StaticExtensionsToInstanceDescriptorsConverter.cs (3)
30if (!(value is StaticExtension staticExtension)) 32throw new ArgumentException(SR.Format(SR.MustBeOfType, nameof(value), nameof(StaticExtension))); 36typeof(StaticExtension).GetConstructor(new Type[] { typeof(string) }),
System\Xaml\XamlLanguage.cs (1)
65new Lazy<XamlType>(() => GetXamlType(typeof(StaticExtension)));