XamlType.LookupContentWrappers Method

Definition

Gets a list of XamlType values that represent the content wrappers for this XamlType.

protected:
 virtual System::Collections::Generic::IList<System::Xaml::XamlType ^> ^ LookupContentWrappers();
protected virtual System.Collections.Generic.IList<System.Xaml.XamlType> LookupContentWrappers ();
abstract member LookupContentWrappers : unit -> System.Collections.Generic.IList<System.Xaml.XamlType>
override this.LookupContentWrappers : unit -> System.Collections.Generic.IList<System.Xaml.XamlType>
Protected Overridable Function LookupContentWrappers () As IList(Of XamlType)

Returns

A list of XamlType values that represent the content wrappers for this XamlType.

Remarks

A content wrapper is a class that represents the content collection type when the types that are used in that collection are not contiguous to the type system. The types of collection items for the content wrapper are expected to be limited in some manner beyond Object or a neutral object equivalent. However, this limitation is only enforced by the design or purpose of the properties that use that type, and not by the type system. More than one content wrapper can exist on a type.

For an example class and scenario from the WPF XAML implementation, see InlineCollection.

Applies to