SignatureHelper.AddArguments Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Adds a set of arguments to the signature, with the specified custom modifiers.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Sub AddArguments ( _ arguments As Type(), _ requiredCustomModifiers As Type()(), _ optionalCustomModifiers As Type()() _ )
Parameters
- arguments
- Type:
System.Type
()
The types of the arguments to be added.
- requiredCustomModifiers
- Type:
System.Type
()
()
An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument. If a particular argument has no required custom modifiers, specify Nothing instead of an array of types. If none of the arguments have required custom modifiers, specify Nothing instead of an array of arrays.
- optionalCustomModifiers
- Type:
System.Type
()
()
An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument. If a particular argument has no optional custom modifiers, specify Nothing instead of an array of types. If none of the arguments have optional custom modifiers, specify Nothing instead of an array of arrays.
| Exception | Condition |
|---|---|
| ArgumentNullException | An element of arguments is Nothing. -or- One of the specified custom modifiers is Nothing. (However, Nothing can be specified for the array of custom modifiers for any argument.) |
| ArgumentException | The signature has already been finished. -or- One of the specified custom modifiers is an array type. -or- One of the specified custom modifiers is an open generic type. That is, the Type.ContainsGenericParameters property is true for the custom modifier. -or- The size of requiredCustomModifiers or optionalCustomModifiers does not equal the size of arguments. |
The arguments are added to the end of the signature, in order of the elements of arguments.
See the System.Runtime.CompilerServices namespace for classes that represent custom modifiers.