XamlSchemaContext.GetXamlDirective(String, String) Method

Definition

Returns a XamlDirective value that represents a directive, either for the XAML language or for a particular implementation.

public:
 virtual System::Xaml::XamlDirective ^ GetXamlDirective(System::String ^ xamlNamespace, System::String ^ name);
public virtual System.Xaml.XamlDirective GetXamlDirective (string xamlNamespace, string name);
abstract member GetXamlDirective : string * string -> System.Xaml.XamlDirective
override this.GetXamlDirective : string * string -> System.Xaml.XamlDirective
Public Overridable Function GetXamlDirective (xamlNamespace As String, name As String) As XamlDirective

Parameters

xamlNamespace
String

The XAML namespace that contains the named directive.

name
String

The name of the directive to obtain.

Returns

A XamlDirective object that represents the requested directive.

Exceptions

xamlNamespace or name is null.

Remarks

Override this method if you create a derived class from XamlDirective as part of a XAML type system extension scenario.

Applies to