Base:
property
ParameterType
System.Reflection.ParameterInfo.ParameterType
3 overrides of ParameterType
System.Private.CoreLib (3)
System\Reflection\Runtime\ParameterInfos\RuntimeMethodParameterInfo.cs (1)
31public sealed override Type ParameterType
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
82public sealed override Type ParameterType
System\Reflection\Runtime\ParameterInfos\RuntimeSyntheticParameterInfo.cs (1)
79public sealed override Type ParameterType
5 references to ParameterType
System.Private.CoreLib (5)
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (1)
117return runtimeParameterInfo.ParameterType.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\MethodInfos\RuntimeMethodHelpers.cs (2)
76string parameterTypeString = parameters[i].ParameterType.FormatTypeName(); 97sb.Append(returnParameter == null ? "Void" : returnParameter.ParameterType.FormatTypeName()); // ConstructorInfos allowed to pass in null rather than craft a ReturnParameterInfo that's always of type void.
System\Reflection\Runtime\ParameterInfos\RuntimeParameterInfo.cs (1)
75return this.ParameterType.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
86return _backingParameter.ParameterType;