XamlDirective.LookupDependsOn Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a list of XamlMember objects. The list reports the members where dependency relationships for initialization order exist relative to this XamlMember. This implementation always returns null
.
protected:
override System::Collections::Generic::IList<System::Xaml::XamlMember ^> ^ LookupDependsOn();
protected override sealed System.Collections.Generic.IList<System.Xaml.XamlMember> LookupDependsOn ();
override this.LookupDependsOn : unit -> System.Collections.Generic.IList<System.Xaml.XamlMember>
Protected Overrides NotOverridable Function LookupDependsOn () As IList(Of XamlMember)
Returns
Always returns null
.
Remarks
Because a XAML directive cannot have initialization order, this implementation always returns null
. XamlDirective seals this virtual member; therefore, all XamlDirective types and all predefined XAML directives must use this behavior.