1 override of GetXamlDirective
PresentationFramework (1)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
32
public override XamlDirective
GetXamlDirective
(string xamlNamespace, string name)
10 references to GetXamlDirective
PresentationFramework (4)
System\Windows\Markup\Baml2006\Baml2006SchemaContext.cs (1)
34
return _parentSchemaContext.
GetXamlDirective
(xamlNamespace, name);
System\Windows\Markup\XamlReader.cs (3)
385
XamlMember synchronousModeProperty = _textReader.SchemaContext.
GetXamlDirective
("http://schemas.microsoft.com/winfx/2006/xaml", "SynchronousMode");
386
XamlMember synchronousRecordProperty = _textReader.SchemaContext.
GetXamlDirective
("http://schemas.microsoft.com/winfx/2006/xaml", "AsyncRecords");
594
XamlMember synchronousRecordProperty = _textReader.SchemaContext.
GetXamlDirective
(XamlLanguage.Xaml2006Namespace, "AsyncRecords");
System.Xaml (3)
System\Xaml\Context\XamlContext.cs (2)
190
XamlDirective directive = SchemaContext.
GetXamlDirective
(propUsageNamespace, propName.Name);
329
return SchemaContext.
GetXamlDirective
(xamlNS, name);
System\Xaml\Parser\XamlScanner.cs (1)
298
XamlMember dirProperty = schemaContext.
GetXamlDirective
(xamlNs, name.Name);
System.Xaml.Tests (3)
System\Xaml\XamlSchemaContextTests.cs (3)
437
Assert.Equal(expected, context.
GetXamlDirective
(xamlNamespace, name));
950
Assert.Throws<ArgumentNullException>("xamlNamespace", () => context.
GetXamlDirective
(null, "name"));
957
Assert.Throws<ArgumentNullException>("name", () => context.
GetXamlDirective
("xamlNamespace", null));