Base:
property
ParameterType
System.Reflection.ParameterInfo.ParameterType
3 overrides of ParameterType
System.Private.CoreLib (3)
System\Reflection\Runtime\ParameterInfos\RuntimeMethodParameterInfo.cs (1)
31
public sealed override Type
ParameterType
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
82
public sealed override Type
ParameterType
System\Reflection\Runtime\ParameterInfos\RuntimeSyntheticParameterInfo.cs (1)
79
public sealed override Type
ParameterType
5 references to ParameterType
System.Private.CoreLib (5)
System\Reflection\Runtime\EventInfos\RuntimeEventInfo.cs (1)
117
return runtimeParameterInfo.
ParameterType
.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\MethodInfos\RuntimeMethodHelpers.cs (2)
76
string parameterTypeString = parameters[i].
ParameterType
.FormatTypeName();
97
sb.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)
75
return this.
ParameterType
.FormatTypeName() + " " + this.Name;
System\Reflection\Runtime\ParameterInfos\RuntimePropertyIndexParameterInfo.cs (1)
86
return _backingParameter.
ParameterType
;