1 override of GetXamlDirective
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
45public override XamlDirective GetXamlDirective(string xamlNamespace, string name)
7 references to GetXamlDirective
PresentationFramework (4)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
47return _parentSchemaContext.GetXamlDirective(xamlNamespace, name);
System\Windows\Markup\XamlReader.cs (3)
397XamlMember synchronousModeProperty = _textReader.SchemaContext.GetXamlDirective("http://schemas.microsoft.com/winfx/2006/xaml", "SynchronousMode"); 398XamlMember synchronousRecordProperty = _textReader.SchemaContext.GetXamlDirective("http://schemas.microsoft.com/winfx/2006/xaml", "AsyncRecords"); 607XamlMember synchronousRecordProperty = _textReader.SchemaContext.GetXamlDirective(XamlLanguage.Xaml2006Namespace, "AsyncRecords");
System.Xaml (3)
System\Xaml\Context\XamlContext.cs (2)
185XamlDirective directive = SchemaContext.GetXamlDirective(propUsageNamespace, propName.Name); 317return SchemaContext.GetXamlDirective(xamlNS, name);
System\Xaml\Parser\XamlScanner.cs (1)
298XamlMember dirProperty = schemaContext.GetXamlDirective(xamlNs, name.Name);