RemoteParameterData.IsParameterArray Field
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.
Indicates whether this RemoteParameterData describes a method parameter that can have a variable number of arguments.
public: bool IsParameterArray;
public bool IsParameterArray;
val mutable IsParameterArray : bool
Public IsParameterArray As Boolean
Field Value
Remarks
The value of this field is true
if this RemoteParameterData describes a parameter that can have a variable number of arguments; otherwise, the value of this field is false
.
The value of this field is always false
if this RemoteParameterData describes a parameter of a method provided by a COM object.
Parameters that can have a variable number of arguments are specified by the params
(for Visual C#) and ParamArray
(for Visual Basic) keywords. For more information, see params and ParamArray.