AxParameterData.Convert 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.
Converts the specified parameter information to an AxParameterData object.
Overloads
Convert(ParameterInfo[]) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified parameter information to an AxParameterData object. |
Convert(ParameterInfo[], Boolean) |
This API supports the product infrastructure and is not intended to be used directly from your code. Converts the specified parameter information to an AxParameterData object, according to the specified value indicating whether to ignore by reference parameters. |
Convert(ParameterInfo[])
Converts the specified parameter information to an AxParameterData object.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static cli::array <System::Windows::Forms::Design::AxParameterData ^> ^ Convert(cli::array <System::Reflection::ParameterInfo ^> ^ infos);
public static System.Windows.Forms.Design.AxParameterData[] Convert (System.Reflection.ParameterInfo[] infos);
static member Convert : System.Reflection.ParameterInfo[] -> System.Windows.Forms.Design.AxParameterData[]
Public Shared Function Convert (infos As ParameterInfo()) As AxParameterData()
Parameters
- infos
- ParameterInfo[]
An array of ParameterInfo objects to convert.
Returns
An array of AxParameterData objects representing the specified array of ParameterInfo objects.
See also
Applies to
Convert(ParameterInfo[], Boolean)
Converts the specified parameter information to an AxParameterData object, according to the specified value indicating whether to ignore by reference parameters.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static cli::array <System::Windows::Forms::Design::AxParameterData ^> ^ Convert(cli::array <System::Reflection::ParameterInfo ^> ^ infos, bool ignoreByRefs);
public static System.Windows.Forms.Design.AxParameterData[] Convert (System.Reflection.ParameterInfo[] infos, bool ignoreByRefs);
static member Convert : System.Reflection.ParameterInfo[] * bool -> System.Windows.Forms.Design.AxParameterData[]
Public Shared Function Convert (infos As ParameterInfo(), ignoreByRefs As Boolean) As AxParameterData()
Parameters
- infos
- ParameterInfo[]
An array of ParameterInfo objects to convert.
- ignoreByRefs
- Boolean
A value indicating whether to ignore parameters passed by reference.
Returns
An array of AxParameterData objects representing the specified array of ParameterInfo objects.