XamlTypeMapper Constructors

Definition

Initializes a new instance of the XamlTypeMapper class.

Overloads

XamlTypeMapper(String[])

Initializes a new instance of the XamlTypeMapper class by specifying an array of assembly names that the XamlTypeMapper should use.

XamlTypeMapper(String[], NamespaceMapEntry[])

Initializes a new instance of the XamlTypeMapper class, using the specified array of assembly names and the specified namespace maps.

XamlTypeMapper(String[])

Initializes a new instance of the XamlTypeMapper class by specifying an array of assembly names that the XamlTypeMapper should use.

public:
 XamlTypeMapper(cli::array <System::String ^> ^ assemblyNames);
public XamlTypeMapper (string[] assemblyNames);
new System.Windows.Markup.XamlTypeMapper : string[] -> System.Windows.Markup.XamlTypeMapper
Public Sub New (assemblyNames As String())

Parameters

assemblyNames
String[]

The array of assembly names the XamlTypeMapper should use.

Exceptions

assemblyNames is null.

Applies to

XamlTypeMapper(String[], NamespaceMapEntry[])

Initializes a new instance of the XamlTypeMapper class, using the specified array of assembly names and the specified namespace maps.

public:
 XamlTypeMapper(cli::array <System::String ^> ^ assemblyNames, cli::array <System::Windows::Markup::NamespaceMapEntry ^> ^ namespaceMaps);
public XamlTypeMapper (string[] assemblyNames, System.Windows.Markup.NamespaceMapEntry[] namespaceMaps);
new System.Windows.Markup.XamlTypeMapper : string[] * System.Windows.Markup.NamespaceMapEntry[] -> System.Windows.Markup.XamlTypeMapper
Public Sub New (assemblyNames As String(), namespaceMaps As NamespaceMapEntry())

Parameters

assemblyNames
String[]

The array of assembly names the XamlTypeMapper should use.

namespaceMaps
NamespaceMapEntry[]

The array of namespace maps the XamlTypeMapper should use.

Exceptions

assemblyNames is null.

Applies to