XamlType.TypeArguments Property

Definition

Gets a list of type arguments for cases where this XamlType represents a generic.

public:
 property System::Collections::Generic::IList<System::Xaml::XamlType ^> ^ TypeArguments { System::Collections::Generic::IList<System::Xaml::XamlType ^> ^ get(); };
public System.Collections.Generic.IList<System.Xaml.XamlType> TypeArguments { get; }
member this.TypeArguments : System.Collections.Generic.IList<System.Xaml.XamlType>
Public ReadOnly Property TypeArguments As IList(Of XamlType)

Property Value

A list of type argument types; otherwise, null, if this XamlType does not represent a generic.

Remarks

There are certain scenarios for a XamlType where calling the TypeArguments parameter returns a list where the types are still open. In this case, one or more of the returned XamlType values will have placeholder values for XamlType.Name, such as T, to represent that the generic is still open. This scenario can occur if you get a XamlType from a call to GetXamlType, instead of from a XAML reader implementation.

Applies to