SignatureHelper.GetPropertySigHelper Method (Module, Type, Type(), Type(), Type(), Type()(), Type()())
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns a signature helper for a property, given the dynamic module that contains the property, the property type, the property arguments, and custom modifiers for the return type and arguments.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Function GetPropertySigHelper ( _ mod As Module, _ returnType As Type, _ requiredReturnTypeCustomModifiers As Type(), _ optionalReturnTypeCustomModifiers As Type(), _ parameterTypes As Type(), _ requiredParameterTypeCustomModifiers As Type()(), _ optionalParameterTypeCustomModifiers As Type()() _ ) As SignatureHelper
Parameters
- mod
- Type: System.Reflection.Module
The module that contains the property for which the SignatureHelper is requested.
- returnType
- Type: System.Type
The property type.
- requiredReturnTypeCustomModifiers
- Type:
System.Type
()
An array of types representing the required custom modifiers for the return type. If the return type has no required custom modifiers, specify Nothing.
- optionalReturnTypeCustomModifiers
- Type:
System.Type
()
An array of types representing the optional custom modifiers for the return type. If the return type has no optional custom modifiers, specify Nothing.
- parameterTypes
- Type:
System.Type
()
The types of the property's arguments, or Nothing if the property has no arguments.
- requiredParameterTypeCustomModifiers
- Type:
System.Type
()
()
An array of arrays of types. Each array of types represents the required custom modifiers for the corresponding argument of the property. If a particular argument has no required custom modifiers, specify Nothing instead of an array of types. If the property has no arguments, or if none of the arguments have required custom modifiers, specify Nothing instead of an array of arrays.
- optionalParameterTypeCustomModifiers
- Type:
System.Type
()
()
An array of arrays of types. Each array of types represents the optional custom modifiers for the corresponding argument of the property. If a particular argument has no optional custom modifiers, specify Nothing instead of an array of types. If the property has no arguments, or if none of the arguments have optional custom modifiers, specify Nothing instead of an array of arrays.
| Exception | Condition |
|---|---|
| ArgumentNullException | mod is Nothing. -or- An element of parameterTypes 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- mod is not a dynamic module. -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 requiredParameterTypeCustomModifiers or optionalParameterTypeCustomModifiers does not equal the size of parameterTypes. |
See the System.Runtime.CompilerServices namespace for classes that represent custom modifiers.
If a property has no custom modifiers, use the GetPropertySigHelper(Module, Type, Type()) method overload.