31 references to BamlSharedSchemaContext
PresentationFramework (31)
src\Framework\MS\Internal\Data\DefaultValueConverter.cs (1)
186
WpfKnownType knownType = XamlReader.
BamlSharedSchemaContext
.GetKnownXamlType(type) as WpfKnownType;
src\Framework\System\Windows\FrameworkElementFactory.cs (1)
109
knownType = XamlReader.
BamlSharedSchemaContext
.GetKnownXamlType(_type) as WpfKnownType;
src\Framework\System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (9)
23
this(localAssembly, System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
)
619
if (_parentSchemaContext == System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
)
621
xamlType = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetKnownBamlType(typeId);
649
if (_parentSchemaContext == System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
)
651
xamlMember = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetKnownBamlMember(propertyId);
690
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(ResourceDictionary)));
693
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(EventSetter)));
702
= new Lazy<XamlMember>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(FrameworkTemplate)).GetMember("Template"));
705
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(StaticResourceExtension)));
src\Framework\System\Windows\Markup\Baml2006\WpfKnownMember.cs (4)
149
WpfSharedBamlSchemaContext schema = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
;
178
WpfSharedBamlSchemaContext schema = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
;
193
return System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(DependencyProperty.PropertyType);
195
return System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(_type);
src\Framework\System\Windows\Markup\Baml2006\WpfKnownType.cs (2)
213
WpfSharedBamlSchemaContext schema = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
;
254
WpfSharedBamlSchemaContext schema = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
;
src\Framework\System\Windows\Markup\Baml2006\WpfSharedBamlSchemaContext.cs (4)
370
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(ResourceDictionary)));
373
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(EventSetter)));
382
= new Lazy<XamlMember>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(FrameworkTemplate)).GetMember("Template"));
385
= new Lazy<XamlType>(() => System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(typeof(StaticResourceExtension)));
src\Framework\System\Windows\Markup\Baml2006\WpfXamlMember.cs (4)
23
System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(dp.OwnerType),
34
System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(re.OwnerType),
154
return System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(DependencyProperty.PropertyType);
165
return System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(RoutedEvent.HandlerType);
src\Framework\System\Windows\Markup\Baml2006\WpfXamlType.cs (4)
236
wpfXamlType = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(re.OwnerType) as WpfXamlType;
305
wpfXamlType = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.GetXamlType(property.OwnerType) as WpfXamlType;
467
xamlMember = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.CreateKnownMember(wpfXamlType.Name, name);
471
xamlMember = System.Windows.Markup.XamlReader.
BamlSharedSchemaContext
.CreateKnownAttachableMember(wpfXamlType.Name, name);
src\Framework\System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
136
typeConverter = XamlReader.
BamlSharedSchemaContext
.GetTypeConverter(xamlProperty.Type.UnderlyingType);
src\Framework\System\Windows\PropertyPath.cs (1)
905
var wpfSharedSchemaContext = XamlReader.
BamlSharedSchemaContext
;